我想在用戶嘗試關閉窗口時有確認框。關閉標籤前確認框
window.onbeforeunload = function (evt) {
var message = 'Are you sure you want to leave, cause there are some unsaved changes?';
if (typeof evt == 'undefined') {
evt = window.event;
}
if (evt) {
evt.returnValue = message;
}
return message;
}
的事情是我想檢查一個變量看重
var sncro=1;
如果其值不等於1個,則該確認框應there..else沒有必要有一個確認。我無法想象這個..它很愚蠢,但我要求任何人都可以看看代碼。
通過「導航走」,而不是關閉相關:http://stackoverflow.com/questions/925734/whats-this-in-javascript-onclick都與'解決onbeforeunload' 。 – 2014-07-10 21:44:32