Appearance
/** * 字符串中替换所有字符 * @param {*} f * @param {*} e * var str='沉默呵,沉默!'; * var newstr=str.replaceAll('沉默','爆发'); * 结果:'爆发呵,爆发!' */ String.prototype.replaceAll = function(f, e) { //吧f替换成e var reg = new RegExp(f, "g"); //创建正则RegExp对象 return this.replace(reg, e); }