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

时间:2021-07-10 05:39:42

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(/'/g,"'");
return strvalue;