使用自定义消息离开页面并留在页面上
我试图在弹出窗口上放置一些自定义文本,要求离开页面或留在页面上。 我尝试了这个
window.onbeforeunload = function () {
return "This is my custom message";
};
,但是 Mozilla 和 Chrome 仍然显示他们自己的消息,而 IE 显示我的消息。 所以我想做的是它应该显示带有“离开”和“留下”按钮的自定义消息。 我确信我在某个网站上看到过,尽管我不记得是哪个网站:(
可能吗?
I am trying to put some custom text on the popup that asks for leave page or stay on the page.
I tried this
window.onbeforeunload = function () {
return "This is my custom message";
};
But Mozilla and Chrome still says their own messages while IE shows my message.
So what I am trying to do is it should show my custom message with Leave and Stay buttons.
And I am sure I have seen in some webiste although I don't remember which website :(
Is it possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Firefox 4 及更高版本不会显示您的自定义消息。另请参阅此答案:
Firefox 4 and higher will not show your custom message. See also this answer: