DOM Window卸载事件,可靠吗?

发布于 2024-08-08 12:41:31 字数 279 浏览 4 评论 0 原文

当用户关闭选项卡/窗口/浏览器时,我可以依赖触发窗口卸载事件吗?

编辑:

找到了 IE 中触发卸载事件的列表。 http://msdn.microsoft.com/en- us/library/ms536973%28VS.85%29.aspx

我想知道在哪些边缘情况下不会触发卸载事件。

Can I rely on the window unload event to be triggered when a user closes a tab/window/browser?

Edit:

Found a list of what triggers the unload event in IE. http://msdn.microsoft.com/en-us/library/ms536973%28VS.85%29.aspx

I would like to know in which edge cases the unload event won't be triggered.

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

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

发布评论

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

评论(2

梦年海沫深 2024-08-15 12:41:31

您可能需要使用“onbeforeunload " 事件也是如此,它提供了比“onunload”事件更多的控制

也就是说,请注意:当浏览器刷新页面或使用后退/前进按钮浏览页面时,Opera 不会触发卸载事件。更糟糕的是,Opera 从不触发 onbeforeunload 事件。因此,如果您支持 Opera - 请注意这些问题。

You will likely want to use the "onbeforeunload" event too, it provides more control than the "onunload" event.

That said, be aware that: Opera doesn’t fire the unload event when the browser refreshes the page, or uses the back/forward buttons to browse off of the page. What’s worse, Opera never fires the onbeforeunload event. Thus if you are supporting Opera - be aware of these issues.

柠檬 2024-08-15 12:41:31

并非在所有情况下都不会。浏览器可能会崩溃等,导致事件无法触发。
用户还可以使用 Grease Monkey 等附加组件来防止事件触发。

Not in all circumstances no. The browser could crash etc. keeping the event from firing.
The user could also use add-ons like Grease Monkey to prevent the event from firing also.

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