为什么更改window.location.href在onbeforeunload中不起作用?

时间:2019-06-14 17:17:13

标签: javascript onbeforeunload

刷新时,我想将当前页面重定向到另一个页面。

我试图做这样的事情。但是在“ console.log”中,未更改window.location.href。为什么以及如何解决这个问题?谢谢:-)

window.onbeforeunload = function(event) {
  window.location.href = "google.com";
  console.log(window.location.href);
  event.returnValue = "reload?";
};

0 个答案:

没有答案