警告用户他正在退出页面的最佳方式

发布于 2024-12-26 08:31:20 字数 290 浏览 0 评论 0原文

我已经看到很多关于此问题的问题,解决方案似乎是

window.onbeforeunload

但我已经尝试过了,在页面卸载之前警告用户似乎效果很好,但我似乎无法设置消息框中的消息。

我已经尝试过:

window.onbeforeunload = function (){ return "test";}

但我收到了浏览器的默认消息。

我使用的是法文版 Firefox 8.0

谢谢大家

I've seen a lot of question on this and the solution seems to be

window.onbeforeunload

But i've tried it, seems to work great to warn the user before the pages unload, but there is no way i've seems to be able to set the message in the message box.

i've tried this :

window.onbeforeunload = function (){ return "test";}

But I've got the default message of the browser.

I'm using the french version of firefox 8.0

Thanks all

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

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

发布评论

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

评论(1

绮烟 2025-01-02 08:31:20

Firefox 不允许您更改消息,但 webkit (Chrome/Safari) 允许。在 webkit 中,如果您在 onbeforeunload 处理程序中返回一个字符串,它会将其解释为“弹出警告对话框”,并将您的字符串作为消息。

遗憾的是 onbeforeunload 非常原始并且不是那么好。希望浏览器在不久的将来找到更好的方法来做到这一点。

Firefox does not allow you to change the message, but webkit (Chrome/Safari) does. In webkit, if you return a string, in your onbeforeunload handler, it will interpret that as "pop a warning dialog" with your string as the message.

Sadly onbeforeunload is quite raw and not that great. Hopefully browsers figure out a better way to do this in the near future.

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