需要用html代码替换+/-字符(例如)—在一小段jQuery中
|
我有一个相当普通的jQuery,当单击+时切换div的可见性,单击-时将其隐藏(单击时+变为-)。问题在于+/-切换器会跟随某些文本,该文本有时带有+或-并同时切换。例如:了解有关blah-blah +的更多信息。单击时,加号变为减号。再次单击时,两个减号都变为加号。
我想如果我只是将+更改为
+
,将减号更改为—
;在jQuery中,它可以解决问题,但不起作用。 div可见性可切换为开/关,但加/减符号不变。
这是脚本:
function toggleSpecial(element)
{
jQuery(element).next(\".hidden\").slideToggle(\"fast\");
jQuery(element).html(function(i,html) {
if (html.indexOf(\'+\') != -1 ){
html = html.replace(\'+\',\'-\');
} else {
html = html.replace(\'-\',\'+\');
}
return html;
});
}
这是用HTML代码替换+和-的脚本,该脚本不起作用。
function toggleSpecial(element)
{
jQuery(element).next(\".hidden\").slideToggle(\"fast\");
jQuery(element).html(function(i,html) {
if (html.indexOf(\'+\') != -1 ){
html = html.replace(\'+\',\'—\');
} else {
html = html.replace(\'—\',\'+\');
}
return html;
});
}
关于我在做什么错的任何想法或建议吗?谢谢!
没有找到相关结果
已邀请:
1 个回复
量华
这将是这样的:
证明在小提琴中:http://jsfiddle.net/rFeeJ/1/ 附加内容: 要使其通用,您需要使用类而不是ID。我只是想举例说明。