对我来说,我有一个要求,我需要通过更改网址重定向到不同的网址....这里我正在做什么
var newURLString = window.location.pathname +"/"+ data.area;
window.location.href = newURLString;
alert(window.location.href);
location.reload();
这段代码完美无缺,但 STRANGEST 的事情是,如果我删除提醒它不起作用!加载当前的URL .....
注意: 提醒我显示正确的网址并重定向到正确的网址,但将此网址加载到当前网址
答案 0 :(得分:0)
只需删除location.reload();你不需要它。它只是重新加载当前页面。
var newURLString = window.location.pathname +"/"+ data.area;
window.location.href = newURLString;
alert(window.location.href);
//location.reload();