如何拦截DOM中的导航事件?
我有一种情况是拦截所有导航操作网页并执行自定义操作然后停止导航。
我设法拦截“”标签上的所有“点击”事件。但还有一些其他情况可以导航当前浏览器窗口,例如修改window.location。
那么,有没有一种通用的方法来拦截导航事件呢?
I have one case to intercept all navigation operation web page and do customized action then stop the navigation.
I managed to intercept all "click" event on "" tag. But there is some other situations to navigate current browser window such as modifying window.location.
So, is there an general approach to intercept navigation event?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
像这样的东西可能会起作用: https://developer.mozilla.org/en/DOM/window .onunload 但是,我不确定所有浏览器都支持...关闭浏览器或选项卡时也会调用它,因此可能不是所需的效果。
Something like this might work: https://developer.mozilla.org/en/DOM/window.onunload however, I'm not sure the support in all browsers... This would also get called when closing the browser or tab, so might not be the desired effect.