在 IE 中,对于不卸载页面的链接会触发 onbeforeunload 事件

发布于 2024-12-09 05:54:44 字数 499 浏览 1 评论 0原文

我正在为 CMS(umbraco)编写一个插件,我希望将警告对话框附加到页面上的各种操作,其中一个操作是单击链接(JavaScript 链接),在大多数浏览器中,以下代码运行良好:

$(".propertypane").delegate("a, a div", "click", function () { window.onbeforeunload = confirmNavigateAway; });

以下是IE 中存在问题,因为单击任何链接时 IE 似乎都会触发 onbeforeunload 事件,即使该链接没有导航离开。

我在这里设置了一个例子: http://jsfiddle.net/DETTG/8/

注意:我无法控制propertypane 中的 ajax 控件,它们是由第三方编写的。

I am writing a plugin to a CMS (umbraco) and I wish to attach a warning dialog to various actions on the page, one such action is clicking a link (JavaScript links), in most browsers the following code works well:

$(".propertypane").delegate("a, a div", "click", function () { window.onbeforeunload = confirmNavigateAway; });

The following is an issue in IE because IE appears to trigger onbeforeunload event when any link is clicked, even though the link is not navigating away.

I've set up an example here:
http://jsfiddle.net/DETTG/8/

Note: I do not have control over the ajax controls within the propertypane, they're written by third parties.

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

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

发布评论

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

评论(2

路弥 2024-12-16 05:54:44

也许这个页面会对您有所帮助?

Maybe this page will help you?

瞎闹 2024-12-16 05:54:44

如果你删除“href”那么它就会起作用。但是,如果您想执行函数,则需要将其样式设置为链接元素并添加属性 onclick。这是更新版本: http://jsfiddle.net/DETTG/34/

<a onclick="alert('do some ajax');" style="color:blue; text-decoration:underline; cursor:pointer">javascript</a>

If you remove "href" then it will work. But then you would need to style it as a link element and add the attribute onclick if you want to execute a function. Here is the updated version: http://jsfiddle.net/DETTG/34/

<a onclick="alert('do some ajax');" style="color:blue; text-decoration:underline; cursor:pointer">javascript</a>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文