gpt4 book ai didi

javascript - 有没有办法在使用 JavaScript 点击刷新时将我的页面重定向到另一个页面

转载 作者:行者123 更新时间:2023-12-03 07:23:59 25 4
gpt4 key购买 nike

enter image description here因此,我想出了一种方法,当我点击 chrome 上的刷新按钮时,如何将我的页面重定向到另一个页面,但似乎找不到如何使用 JavaScript 来做到这一点。

function confirmExit() {
alert("exiting");
window.location.href = "index.html";
return true;
}
window.onbeforeunload = confirmExit();

当我使用这段代码时,它只是无限循环。

最佳答案

另一种解决方案是在页面加载时检查本地存储字段以查看它是否是当前 URL。如果是,则将其重定向到不同的 URL,如果不同,则将其设置为当前 URL。

if(localStorage.getItem('current-url') === location.href){
location.href = "redirectingurl";
}
else{
localStorage.setItem('current-url',location.href);
}

关于javascript - 有没有办法在使用 JavaScript 点击刷新时将我的页面重定向到另一个页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63943297/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com