我想使用 str_replace
或其类似的替代品来替换 JavaScript 中的一些文本。
var text = "this is some sample text that i want to replace";
var new_text = replace_in_javascript("want", "dont want", text);
document.write(new_text);
应该给予
this is some sample text that i dont want to replace
如果您要使用 regex,那么 比较内置的替换方法。