//普通的 relpace方法写法
var str = "relace thisthisthisthis"; str.replace('this','that');
只会替换一个。
结果显示的 relace thatthisthisthis;
如果需要替换全部的字符串的话 需要用到正则表达
var str = "relace thisthisthisthis"; str.replace(/this/g,'that');