javascript验证——常规注册

 function numbers(){
 dd="";
 while(dd.length<4){
  temp=parseInt(Math.random()*10);
  if(dd.indexOf(""+temp)==-1){
   if(dd.length==0&&temp==0)
    continue;
   else
    dd+=temp;
  }
 }
 document.forma.u_math.value=dd;
}

function check(){
    if(document.forma.u_id.value=="")
   {
      alert("请输入登陆ID");
      document.forma.u_id.value="";
      document.forma.u_id.focus();
      return false;
   }
    if(document.forma.u_name.value=="")
   {
      alert("请输入商务姓名");
      document.forma.u_name.value="";
      document.forma.u_name.focus();
      return false;
   }
    if(document.forma.u_password.value=="")
   {
      alert("请输入密码");
      document.forma.u_password.value="";
      document.forma.u_password.focus();
      return false;
   }
    if(document.forma.confirm_password.value=="")
   {
      alert("请确认输入密码");
      document.forma.confirm_password.value="";
      document.forma.confirm_password.focus();
      return false;
   }
   if(document.forma.u_password.value!=document.forma.confirm_password.value)
   {
      alert("您的两次密码输入的不一致,请重新输入");
      document.forma.u_password.focus();
      return false;
   }
   if(document.forma.u_email.value=="")
   {
      alert("请输入电子邮箱");
      document.forma.u_email.value="";
      document.forma.u_email.focus();
      return false;
   }
   var email=document.forma.u_email.value;
        if(email.lastIndexOf(".")==-1){
 alert("电子邮箱输入格式有误,请重新填写");
 return false;
 }
 if(email.lastIndexOf("@")==-1){
 alert("电子邮箱输入格式有误,请重新填写");
 return false;
 }
 return true;
}

你可能感兴趣的:(JavaScript,function,email,Numbers)