我尝试调试刷新特定页面后浏览器消失的问题。我想知道是否可以消除JavaScript作为此问题的原因。
IE是否具有与Firefox配置选项dom.allow_scripts_to_close_windows
相同的效果?
答案 0 :(得分:0)
我做了一些谷歌搜索,这是我能找到的最接近的东西,但我不知道它是否也阻止JavaScript关闭窗口。
Prevent Users from Closing the Browser or Explorer Windows
编辑:您可以使用 onbeforeunload 事件来查看该网页是否触发某种关闭事件。
window.onbeforeunload = function() {
return "The browser is about to close this window, are you sure?"; // Will appear as a confirmation box
};