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;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值