我有带有复选框和文本字段的 html 页面,并且 JavaScript 能够验证复选框但不能验证文本字段。有人可以帮忙,因为我不确定哪里错了
<html>
<head>
<script type="text/javascript">
function validator()
{
var c = document.getElementsByName("chk");
var k=false;
for( var i=0; i<c.length; i++ )
{
if( c[i].checked )
{
k=true;
return(true);
}
}
if(k){
return(true);
}
else{
alert("Select one environment");
return(false);
}
var ap = form.getElementById("a1");
if(ap.value == "" || ap.length == 0)
{
alert("Enter the path");
ap.setfocus();
return(false);
}
else
{
return(true);
}
var p = form.getElementById("a2");
if(p.value == "" || p.length == 0)
{
alert("Enter the path");
form.p.setfocus();
return(false);
}
return(true);
}
</script>
</head>
<body>
<form action="/car.java" onsubmit="return validator(this);">
<br />
<p>
<input name="chk" type="checkbox" />One
<input name="chk" type="checkbox" />Two
<input name="chk" type="checkbox" />Three
</p>
<br />
<input name="a1" id="a1" size="123" style="width: 766px; height: 21px;" type="text" />
</p>
<p>
<input name="a2" id="a2" size="123" style="width: 766px; height: 21px;"
type="text" />
</p>
<textarea cols="95" name="status" rows="11"></textarea>
<input name="sub" size="28" style="width: 156px; height: 29px;" type="button"
value="Submit" />
</p>
</form>
</body>
</html>