使用window.location.reload更改当前窗口

时间:2019-04-26 14:47:01

标签: jquery

我想在location.reload之后更改当前窗口的位置。我可以重新加载页面,但不能更改位置。

$(document).ready(function() {    
  location.reload (function() {    
  location.replace("https://stackoverflow.com");});
});

1 个答案:

答案 0 :(得分:0)

您无法在reload方法内调用函数。要实现您的范围,请尝试以下代码:


$(document).ready(function(){    
  window.location.reload();    
  window.location.replace("https://stackoverflow.com");
});