罚息减免流程添加选择日期触发事件

This commit is contained in:
tangfutang 2020-03-30 11:23:03 +08:00
parent 0b7d8724a4
commit 8582a32882

View File

@ -88,5 +88,17 @@
return;
}
}
function test(datelist){
console.log("选择的日期:"+datelist);
}
$(function(){
for (var i=0;i<getRowCount(0);i++){
getObj( 0 , i,'HIRE_DATE' ).onchange = function() {
test(this.value);
};
}
});
</script>
<%@ include file="/Frame/resources/include/include_end.jspf"%>