<form>
のようなもので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>
.....