表单提交验证的javascript

//单一form时

 var Choice3=document.getElementsByName('Choice3')[0]; //getElementsByName得到的是同名element数组,要用下标

不是documen.Form.getElementsByName,费了好几个小时就因为多写了个form
 var Choice4=document.getElementsByName('Choice4')[0];
 if(Choice3.value==""){
  alert("Choice3");
  return false;
 }
 if(Choice4.value==""){
  alert("Choice4");
  return false;
 }
 return true;

 

//多form时

if(form.name=="Form"){
 var DateCombo1=document.Form.elements['DateCombo1'];
 var DateCombo2=document.Form.elements['DateCombo2'];
 var Choice1=document.Form.elements['Choice1'];
 var Choice2=document.Form.elements['Choice2'];
 var Choice3=document.Form.elements['Choice3'];
 var Choice4=document.Form.elements['Choice4'];
 var TextArea1=document.Form.elements['TextArea1']; 
if(DateCombo1.value=='^DATE^'){
  alert("DateCombo1");
  return false;
 }
if(DateCombo2.value=='^DATE^'){
  alert("DateCombo2");
  return false;
 }
if(Choice1.value.length==0){
  alert("Choice1");
  return false;
}
if(Choice2.value.length==0){
  alert("Choice2");
  return false;
}
if(Choice3.value.length==0){
  alert("Choice3");
  return false;
}
if(Choice4.value.length==0){
  alert("Choice4");
  return false;
}
if(TextArea1.value.length==0){
  alert("TextArea1");
  return false;
}
return true;
}

else{
 return true;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值