日期:2014-05-16  浏览次数:20362 次

实现js的replaceAll方法
转载http://www.iteye.com/topic/67544


String.prototype.replaceAll  = function(s1,s2){   
  return this.replace(new RegExp(s1,"gm"),s2);   
}  


挺好用滴