例如,如果我要改变什么 -
www.site.com/img-small-1.jpg
到
www.site.com/img-large-1.jpg
我怎么能用javascript做到这一点?
答案 0 :(得分:1)
您可以使用替换来更改地址
var currentAddress = "www.site.com/img-small-1.jpg";
var newAddress = currentAddress.replace("img-small-1.jpg", "img-large-1.jpg");
window.location.href = newAddress; // this will redirect to new address