在 IOS 13 及以下版本的 Safari 浏览器中,replaceAll() 方法不被支持。您可以使用 replace() 方法与正则表达式作为参数来替换字符串中的所有匹配项。例如,您可以将代码改写为:
replaceAll()
replace()
text = text.replace(/<br>/g, "\n");
这会使用正则表达式 <br> 匹配到 text 字符串中所有的 <br> 标签并替换为换行符 \n。
<br>
text
\n
发布 问题
在线 客服
回到 顶部