jQuery中的字符串操作

前端之家收集整理的这篇文章主要介绍了jQuery中的字符串操作前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个div点击文本标题崩溃.我想相应地将标题从“过滤器”更改为“ – 过滤器”(当div折叠或展开时)

我如何使用jQuery执行此操作:

if (headerDiv.text() starts with "+")
    replace "+" with "-" 
else 
    replace "-" with "+"

解决方法

没关系,我想通了
if ($(header).text().trim().charAt(0) == "+")
    $(header).text($(header).text().replace("+","-"));
else
    $(header).text($(header).text().replace("-","+"));

如果这不是正确的方法,我会很高兴

原文链接:https://www.f2er.com/jquery/176994.html

猜你在找的jQuery相关文章