微信浏览器replaceAll报无此方法

问题:微信浏览器replaceAll报无此方法:

解决办法:String.prototype.replaceAll = function (s1, s2) {
return this.replace(new RegExp(s1, 'gm'), s2)
}

你可能感兴趣的:(前端html微信浏览器)