復制代碼 代碼如下:
window.onbeforeunload = function() {
if(is_form_changed()) {
return "您的修改內容還沒有保存,您確定離開嗎?";
}
}
function is_form_changed() {
var t_save = jQuery("#t_save"); //檢測頁面是否要保存按鈕
if(t_save.length>0) { //檢測到保存按鈕,繼續檢測元素是否修改
var is_changed = false;
jQuery("#A4 input, #A4 textarea, #A4 select").each(function() {
var _v = jQuery(this).attr('_value');
if(typeof(_v) == 'undefined') _v = '';
if(_v != jQuery(this).val()) is_changed = true;
});
return is_changed;
}
return false;
}
jQuery(document).ready(function(){
jQuery("#A4 input, #A4 textarea, #A4 select").each(function() {
jQuery(this).attr('_value', jQuery(this).val());
});
});