回 帖 发 新 帖 刷新版面

主题:谁给我看看这怎么回事啊>>>

我所有文本框都是空的话,单击下一步,也可以执行,怎么不抱错呢

<script language=javascript>
function check1(){

if (document.form1.accout.value==""){
 alert("帐号不能空");
 document.form1.accout.focus();
 return false;
 }
if (document.form1.phonenumber.value==""){
 alert("电话不能空");
 document.form1.phonenumber.focus();
 return false;
 }
if (document.frorm1.esn.value==""){
 alert("ESN/IP不能空");
 document.form1.esn.focus();
 return false;
 }
if (document.form1.sid.value==""{
 alert("SID不能空“);
 document.form1.sid.focus();
 return false;
 }
if (document.form1.nid.value==""){
 alert("NID不能空");
 document.from1.nid.focus();
 return false;
 }
 return true;
 }
</script>
<form  action="updata1.jsp" method="post" name="form1">
<h3>填写用户基本信息</h3>
<br>
<br>
账  号:<input type="text" name="accout" value="">     电话:<input type="text" name="phone" value="">
<br>
<br>
ESN/IP:<input type="text" name="esn"  value="">  IMSI:<input type="text" name="imsi" value="">
<br />
<br>
SID :<input type="text" name="sid" value="">   NID : <input type="text" name="nid" value="">
<br>
<br>
<input type="submit" name="submit" value="下一步" onClick="return check1()"> <input type="reset" name="reset1" value="重写">
</form>
</div>

回复列表 (共1个回复)

沙发

诸多错误,楼主打代码太粗心了.
if (document.form1.phonenumber.value==""){ ->if (document.form1.phone.value==""){
if (document.frorm1.esn.value==""){ ->if (document.form1.esn.value==""){
if (document.form1.sid.value==""{ ->if (document.form1.sid.value==""){

我来回复

您尚未登录,请登录后再回复。点此登录或注册