字符串替换

//普通的 relpace方法写法
var str = "relace thisthisthisthis";
str.replace('this','that');

 



只会替换一个。

结果显示的 relace thatthisthisthis;

 

如果需要替换全部的字符串的话 需要用到正则表达

var str = "relace thisthisthisthis";
str.replace(/this/g,'that');

 

posted @ 2013-03-04 21:37  kpbiao  阅读(155)  评论(0编辑  收藏  举报