1 stringObject.replace(regexp/substr, newSubStr/function) 参数 regexp/substr 正则表达式/字符串 newSubStr/function 替换文本/生成替换文本的函数 示例 1 2 var str = "Visit Microsoft!"; var res = str.replace("Microsoft", "W3Schools"); 替换字符 假如替换字符newSubStr中包含$符号,它表示什么? $...