我知道我必须在这里做一些愚蠢的事情。只需要第二双眼睛。
验证我的单选框是否已被选中:
<input type="radio" name="cont_amt" id="cont_amt" value="1000">
//alert(theForm.cont_amt.value);
var con_optLength = theForm.cont_amt.length;
var chkd="";
for(var i = 0; i < con_optLength; i++) {
if(theForm.cont_amt[i].checked) {
chkd=theForm.cont_amt[i].value;
}
}
if ( chkd == "" ) {
reason += "\t" + "Must select a contribution option" + "\n";
}
我总是保持警惕,因为我length
的总是不确定的。