2011-10-17 63 views

回答

1

的消息是onbeforeunload事件處理函數的返回值:

window.onbeforeunload = function() { 
    return 'Custom message'; 
}; 

不幸的是,這樣的定製消息沒有在Firefox的新版本的支持。

1

你可以嘗試訂閱的onbeforeunload事件,並返回消息:

window.onbeforeunload = function (e) { 
    e = e || window.event; 

    // For IE and Firefox prior to version 4 
    if (e) { 
    e.returnValue = 'some custom message'; 
    } 

    // For Safari 
    return 'some custom message'; 
};