我想在location.reload之后更改当前窗口的位置。我可以重新加载页面,但不能更改位置。
$(document).ready(function() {
location.reload (function() {
location.replace("https://stackoverflow.com");});
});
答案 0 :(得分:0)
您无法在reload方法内调用函数。要实现您的范围,请尝试以下代码:
$(document).ready(function(){
window.location.reload();
window.location.replace("https://stackoverflow.com");
});