Home JQuery使用Replace函数替换全部匹配项
Post
Cancel

JQuery使用Replace函数替换全部匹配项

JQuery的Replace仅能替换第一个匹配的内容,例如:

1
2
3
var str = "a<br/>b<br/>c<br/>";
var Newstr = str.Replace("<br/>", "");
alert(Newstr); // 内容为:ab<br/>c<br/>

要替换全部匹配项,可以使用正则表达式:

1
2
3
4
5
6
var str = "a<br/>b<br/>c<br/>";
re = new RegExp("<br/>", "g");
// 第一个参数是要替换掉的内容,第二个参数"g"表示替换全部(global)。
var Newstr = str.Replace(re, ""); 
// 第一个参数是正则表达式。
alert(Newstr); // 内容为:abc
This post is licensed under CC BY 4.0 by the author.