在 IE 中,对于不卸载页面的链接会触发 onbeforeunload 事件
我正在为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
也许这个页面会对您有所帮助?
Maybe this page will help you?
如果你删除“href”那么它就会起作用。但是,如果您想执行函数,则需要将其样式设置为链接元素并添加属性 onclick。这是更新版本: http://jsfiddle.net/DETTG/34/
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/