OnBeforeUnload 重定向用户

发布于 2024-11-18 21:37:13 字数 123 浏览 3 评论 0原文

在我的 OnBeforeUnload 事件中,它询问用户是否要离开页面还是留在页面上。当他们单击“留在页面上”时,我希望它将他们重定向到同一窗口中的另一个网页。有没有办法做到这一点,而不仅仅是显示/隐藏 div?我可以重写该函数吗?

In my OnBeforeUnload event, it asked the user whether they want to leave the page or stay on it. When they click "stay on page", I want it to then redirect them to another webpage in the same window. Is there a way to do this, without just showing/hiding divs? Can I override the function?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

音栖息无 2024-11-25 21:37:13

有趣的!

在 Internet Explorer 中可能:

window.onbeforeunload = function()
{
    window.onbeforeunload = null;
    location.assign('http://example.com');
    return "Warning message";
};

Firefox 在等待您的回答时将转到第二页,然后如果您同意则离开该页面。

Chrome 将始终转到第二页,这意味着用户无法离开该页面。所以这可能是一个非常糟糕的主意。

如果用户关闭窗口,它仍然可以正常工作 - 但您无法判断这是否是用户想要的。

Interesting!

Possible in Internet Explorer:

window.onbeforeunload = function()
{
    window.onbeforeunload = null;
    location.assign('http://example.com');
    return "Warning message";
};

Firefox will go to the second page whilst waiting for your answer and then leave the page if you say so.

Chrome will always go to the second page, meaning the user cannot leave the page. So this might be a fantastically bad idea.

If the user is closing their window, it works alright though - but you can't tell if this is what the user wants.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文