关于前端:微信浏览器replaceAll报无此方法

33次阅读

共计 115 个字符,预计需要花费 1 分钟才能阅读完成。

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

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

正文完
 0