我有一个问题:
window.location.href.replace
是否可以将它应用于2个或更多单词的组?
示例:
window.location.href = window.location.href.replace("-standard", "-standard-upload");
我需要将2个单词替换为另外2个单词,在示例中我将1更改为另一个单词。
答案 0 :(得分:3)
可能你可以这样做:
var a = window.location.href;
a = a.replace("-standard", "-standard-upload");
a = a.replace("old", "new");
window.location.href = a;
答案 1 :(得分:2)
str = window.location.href;
str.replace("this", "another").replace("is", "words").replace("example", "changed")
作为一般例子......