您可以使用数组进行替换:
var array = {"from1":"to1","from2":"to2"} for (var val in array) text = text.replace(array,array[val]);
但是,如果你需要全球替换,即
text = text.replace(/ from / g,“to”);
数组相当大,因此如果我为每个变量写“text = text.replace(…)”,脚本将占用大量空间.
在这种情况下你如何使用数组?
“/ from1 / g”:“to1”不起作用.
解决方法
var array = {"from1":"to1","from2":"to2"} for (var val in array) text = text.replace(new RegExp(val,"g"),array[val]);
编辑:正如Andy所说,你可能不得不使用像this one这样的脚本来逃避特殊字符.