var tbgs = 'field15053_';
jQuery(function () {
if(typeof addRow0==="undefined"){//非操作節點,不執行后續代碼
return;
}
try {
var oaddRow0 = addRow0;
addRow0 = function(){//重寫addRow0,0指明細表1
var id='field15052_';
oaddRow0.apply(this, arguments);//執行原按鈕事件(新增空行)
//自定義操作
jQuery("input[name^="+id+"]").each(function(){
var index = jQuery(this).attr("id").split('_')[1];
//添加失去焦點事件監聽
jQuery("#"+tbgs+index).blur(function(){
if(jQuery(this).val()>jQuery('#'+id+index+"span").html())
{
alert("填報工時不能大於可報工時");
jQuery(this).val("");
jQuery(this).focus();
}
});
});
}
} catch(e) {}
});