米琪卡哇伊
var g_blnCheckUnload = true; //定义一个变量 function RunOnBeforeUnload() //创建函数 { if(g_blnCheckUnload) //如果 g_blnCheckUnload的值为true时 { window.event.returnValue = '是否继续进行备份'; //用于模式对话框接收返回值 } } function bypassCheck() { g_blnCheckUnload = false;} onbeforeunload=RunOnBeforeUnload;//onbeforeunload为当浏览器关闭之前触发某个事件,这里引用了函数RunOnBeforeUnload