replaceAll is not a function 问题解决

在chrome 浏览器中使用 replaceAll 报 这个错误, 是因为chrome 版本过低, 在chrome 85 以上版本才支持
1.查看chrome 浏览器版本
replaceAll is not a function 问题解决_第1张图片

2.查看replaceAll 支持的浏览器
replaceAll is not a function 问题解决_第2张图片

3.解决办法:使用replace 代替

 "abab".replace(/[a]/g, "")   //结果 bb
  "waabbxaabby".replace(/(aabb)/g, "") //wxy

你可能感兴趣的:(javascript)