警告用户他正在退出页面的最佳方式
我已经看到很多关于此问题的问题,解决方案似乎是
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.