我知道您不能在<form>
like中使用 onLoad 属性<form id"form" onload="javascript:test()">
,您只能在<body>
我的问题是,是否有任何属性可以在表单加载时调用函数,或者是否有不同的方法来执行此操作?
编辑:
就像这样
<form jwcid="form">
<script>
function checkForChange() {
var approvalStatus = document.getElementById('licensingStatus').value;
if(approvalStatus == "Pass"){
document.getElementById('licensingApprovalDate').setAttribute("validators", "validators:maxDateToday,required");
} else {
document.getElementById('licensingApprovalDate').setAttribute("validators", "validators:maxDateToday");
}
}
</script>
.....