浏览器关闭前的监听回调-onbeforeunload

浏览器关闭窗口,弹出提示框

window.onbeforeunload=function(event){
    var  e = window.event || event;
    e.returnValue = '确定关闭么?'
}

如浏览器关闭窗口前回调,但不弹提示窗

window.onbeforeunload=function(event){
    /*执行其他程序*/
    return null;
}

// 或者返回undefined
window.onbeforeunload=function(event){
    /*执行其他程序*/
    return undefined;
}

如需关闭默认的提示窗口,则需要返回null或者undefined;如返回false,可能没起到效果;返回空字符这显示默认文案

 

你可能感兴趣的:(javascript,浏览器)