function enable_all() {
var b = document.getElementById('beforeunload');
if (b !== null)
b.value = 2;
}
function submit_it() {
var b = document.getElementById('beforeunload');
if (b !== null)
b.value = 1;
}
window.addEventListener("beforeunload", function(e) {
var val = document.getElementById('beforeunload').value;
if (val > 1) {
var confirmationMessage = "您是否要离开 - 您输入的数据可能不会被保存。";
(e || window.event).returnValue = confirmationMessage; // Gecko and Trident
return confirmationMessage; // Gecko and WebKit});
}
});