刷新时,我想将当前页面重定向到另一个页面。
我试图做这样的事情。但是在“ console.log”中,未更改window.location.href。为什么以及如何解决这个问题?谢谢:-)
window.onbeforeunload = function(event) {
window.location.href = "google.com";
console.log(window.location.href);
event.returnValue = "reload?";
};