DOM Window卸载事件,可靠吗?
当用户关闭选项卡/窗口/浏览器时,我可以依赖触发窗口卸载事件吗?
编辑:
找到了 IE 中触发卸载事件的列表。 http://msdn.microsoft.com/en- us/library/ms536973%28VS.85%29.aspx
我想知道在哪些边缘情况下不会触发卸载事件。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能需要使用“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.
并非在所有情况下都不会。浏览器可能会崩溃等,导致事件无法触发。
用户还可以使用 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.