Skip to content
分类目录:

js 替换所有字符串

Post date:
Author:
Number of comments: no comments

js 替换所有字符串

JavaScript不提供replaceAll()方法,要替换所有字符串,只能用正则表达式了

str.replace(new RegExp("被替换的字符","gm"), "要替换的字符");

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注