多个同名文本框怎么验证不为空
多个同名文本框怎么通过javascript验证不能为空
<head>
<title>多文本框验证</title>
<script language="javascript">
function checkText_Click()
{
for(var i=0;i<this.InpTxt.length;i++)
{
if(this.InpTxt[i].value=="")
{
alert('第'+(i+1)+"个文本框为空");
break;
}
}
}
</script>
</head>
<body>
<input type="button" name="checkText" onClick="checkText_Click();" value="验证文本框" ><br>
<input name="InpTxt" type="text" >文本框1<br>
<input name="InpTxt" type="text" >文本框2<br>
<input name="InpTxt" type="text" >文本框3<br>
<input name="InpTxt" type="text" >文本框4<br>
<input name="InpTxt" type="text" >文本框5<br>
<input name="InpTxt" type="text" >文本框6<br>
<input name="InpTxt" type="text" >文本框7<br>
<input name="InpTxt" type="text" >文本框8<br>
<input name="InpTxt" type="text" >文本框9<br>
<input name="InpTxt" type="text" >文本框10<br>
</body>
</html>
[此贴子已经被作者于2007-8-8 14:40:18编辑过]