本文实例讲述了jQuery实现字符串全部替换的方法。分享给大家供大家参考,具体如下:
与C# String类型的Replace方法不同,jQuery的Replace仅能替换第一个匹配的内容。
例如:
1
2
3
|
varstr ="a
b c "; varNewstr = str.Replace("
",""); alert(Newstr);//内容为:ab
c |
要替换全部匹配项,可以使用正则表达式:
1
2
3
4
5
6
|