如何拦截DOM中的导航事件?

发布于 2024-12-10 23:37:21 字数 157 浏览 0 评论 0原文

我有一种情况是拦截所有导航操作网页并执行自定义操作然后停止导航。

我设法拦截“”标签上的所有“点击”事件。但还有一些其他情况可以导航当前浏览器窗口,例如修改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 技术交流群。

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

发布评论

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

评论(1

知你几分 2024-12-17 23:37:21

像这样的东西可能会起作用: 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.

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