作者热门文章
- xml - AJAX/Jquery XML 解析
- 具有多重继承的 XML 模式
- .net - 枚举序列化 Json 与 XML
- XML 简单类型、简单内容、复杂类型、复杂内容
到目前为止,这是我的代码:
$("h1.intro:contains('|')").each(function() {
$(this).html($(this).html().replace('|','</span><br /><span>'))
});
这只有效一次,但它必须适用于所有这些“|”...
有什么想法吗?
最佳答案
添加/g
修饰符:
$("h1.intro:contains('|')").each(function() {
$(this).html($(this).html().replace(/\|/g, '</span><br /><span>'));
});
更多信息:
The g modifier is used to perform a global match (find all matches rather than stopping after the first match).
关于javascript - 如何多次更换?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3971244/
我是一名优秀的程序员,十分优秀!