我需要在使用javascript或PHP关闭浏览器窗口之前显示确认对话框。 当我点击浏览器的关闭按钮时,应该出现确认框。其他明智的不显示对话框。 请帮助我。
答案 0 :(得分:22)
您应该处理onbeforeunload事件......
function closeEditorWarning(){
return 'Are you sure?'
}
window.onbeforeunload = closeEditorWarning;
或者使用jquery,window.attachEvent / window.addEventListener来做得很好
答案 1 :(得分:1)
onunload
不是很有用(在我看来),因为你不能做任何你请求confirm
的东西(除了尝试新的另一个) window.open
窗口,因此onbeforeunload
对此案例更有用。
你最好的选择是onbeforeunload
,这很棒,但在Opera中不起作用(虽然这通常不是交易破坏者)。
就像常春藤说的那样,它看起来像这样:
<script>
var userIsEditingSomething; // set this if something crazy happens
oldOnBeforeUnload = window.onbeforeunload;
window.onbeforeunload = function () {
// attempt to handle a previous onbeforeunload
if ('function' === typeof oldOnBeforeUnload) {
var message = oldOnBeforeUnload();
if ('undefined' !== typeof message) {
if (confirm('string' === typeof message ? message : 'Are you sure you want to leave this page?')) {
return; // allow user to exit without further annoying pop-ups
}
}
}
// handle our own
if (userIsEditingSomething) {
return 'Are you sure you want to exit?';
}
};
</script>
答案 2 :(得分:-2)
function doUnload()
{
// use confirm dialog box here
confirm("Window is closing...");
}
<body onunload="doUnload()">