当前位置导航:炫浪网>>网络学院>>网页制作>>JavaScript教程

解决javascript中replace只能替换第一个

replace如果替换数据时,默认只替换第一个。

如果在替换的时候加上: / 替换内容 /g 就能实现全部替换

例如:

function change(strvalue){
strvalue = strvalue.replace(/&/g,"&");
strvalue = strvalue.replace(/&lt;/g,"<");
strvalue = strvalue.replace(/&gt;/g,">");
strvalue = strvalue.replace(/&quot;/g,"\"");
strvalue = strvalue.replace(/&#39;/g,"'");
return strvalue;
}

相关内容
赞助商链接