【发布时间】:2016-06-15 00:09:25
【问题描述】:
我正在使用以下代码 sn-p 在页面关闭之前触发警报,但 Chrome 似乎忽略了该消息并显示其默认消息“您要离开此站点吗?您所做的更改可能不会被保存”。如何让 chrome 显示我的消息而不是默认消息?
window.onbeforeunload = function(e) {
e.returnValue = "A search is in progress, do you really want to stop the search and close the tab?";
return "A search is in progress, do you really want to stop the search and close the tab?";
}
【问题讨论】:
-
自定义消息显示在 chromium 50
-
浏览器供应商是否允许自定义消息会有所不同。如果他们不这样做,您将无能为力
标签: javascript jquery google-chrome