beforeunload 事件可以绑定到什么元素上面?

发布于 2022-09-02 01:13:55 字数 465 浏览 13 评论 0

var attention = function (e) {
  var confirmationMessage = "修改尚未保存!";
  console.log(e.);
  (e || window.event).returnValue = confirmationMessage; // Gecko and Trident
  return confirmationMessage; // Gecko and WebKit
};

window.addEventListener('beforeunload', attention);

绑定到 window 上时起效,绑定到其他页面元素则不行,例如

var input = document.querySelector('table>input')
input.addEventListener('beforeunload', attention)

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

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

发布评论

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

评论(2

独守阴晴ぅ圆缺 2022-09-09 01:13:55

http://guoyankun.iteye.com/blog/1765858看看这个吧,能用在三个window,body,frameset这三个元素上。

叶落知秋 2022-09-09 01:13:55

Which HTML tags support the onbeforeunload event?

官方文档对 beforeunload 事件的说明

Let event be a new BeforeUnloadEvent event object with the name beforeunload, which does not bubble but is cancelable.
Dispatch: Dispatch event at the Document's Window object.

官方说,只在 window 对象上支持这个事件

但是我在国外的 w3school 上看到说 body 元素也支持这个事件,然后我就在自己浏览器上试了一下,然而没什么卵用(浏览器:Chrome 53.0)。还是官网的对,只在window 对象上支持这个事件

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