0
我想驗證我的表單中的兩個字段。 但它只顯示一個字段的錯誤信息。 以下是Javascript代碼:驗證多個空字段
function req() {
if (document.reg_indi_form.txt_fnm.value=="") {
document.getElementById('i').innerHTML="*This field is required";
document.getElementById('i').style.color="red";
return false;
}
if (document.reg_indi_form.txt_lnm.value=="") {
document.getElementById('i1').innerHTML="*This field is required";
document.getElementById('i1').style.color="red";
return false;
}
}
HTML代碼:
<input name="txt_fnm" type="text" id="txt_fnm"/> <label id="i"></label>
<input name="txt_lnm" type="text" id="txt_lnm"/>\<label id="i1"></label>
把你的'return'聲明在結尾,而不是Ø f在每個if語句之後 – bruchowski 2014-10-11 08:40:28