OnBeforeUnload 重定向用户
在我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有趣的!
在 Internet Explorer 中可能:
Firefox 在等待您的回答时将转到第二页,然后如果您同意则离开该页面。
Chrome 将始终转到第二页,这意味着用户无法离开该页面。所以这可能是一个非常糟糕的主意。
如果用户关闭窗口,它仍然可以正常工作 - 但您无法判断这是否是用户想要的。
Interesting!
Possible in Internet Explorer:
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.