`
jeasony
  • 浏览: 199547 次
  • 性别: Icon_minigender_1
  • 来自: 厦门
社区版块
存档分类
最新评论

JS验证

    博客分类:
  • js
阅读更多

关键字: 常规验证、正则表达式、绝对好用

       呵呵,近期偶完成的一个较大的JS验证,行家一看就知道这种业务设计不怎么样,但是我还要是贴出来,因为几乎常用的JS前台验证都有了。
      当然了,变态的是里面还有DWR的AJAX实现,参考吧但不要对业务设计做什么评论!哈哈。

js 代码
 
  1. <script language="JavaScript">  
  2. function Check(){  
  3.     var errorinfo = "";  
  4.     var isFocus = true;   
  5.     var groupUserName = document.getElementsByName("Custom.groupUserName")[0];  
  6.     if (groupUserName.value == ""){  
  7.         errorinfo += "机构客户名称为必填项,请输入!\n";  
  8.         if(isFocus){  
  9.                     groupUserName.focus();  
  10.                     isFocus = false;  
  11.         }                     
  12.     }  
  13.     var enterpriseAddress = document.getElementsByName("Custom.enterpriseAddress")[0];  
  14.     if (enterpriseAddress.value == ""){  
  15.         errorinfo += "客户办公地址为必填项,请输入!\n";  
  16.         if(isFocus){  
  17.                     enterpriseAddress.focus();  
  18.                     isFocus = false;  
  19.         }         
  20.     }  
  21.           
  22.     var postcode = document.getElementsByName("Custom.postcode")[0];  
  23.     if (postcode.value == ""){  
  24.         errorinfo += "邮政编码为必填项,请输入!\n";  
  25.         if(isFocus){  
  26.                     postcode.focus();  
  27.                     isFocus = false;  
  28.         }                     
  29.     }else{  
  30.         var patrn=/^[a-zA-Z0-9 ]{3,12}$/;  
  31.         if (!patrn.exec(postcode.value)){  
  32.             errorinfo += "你输入的邮政编码格式不正确,请重新输入!\n";  
  33.             if(isFocus){  
  34.                         postcode.focus();  
  35.                         isFocus = false;  
  36.             }                                         
  37.         }  
  38.     }  
  39.     var checkSub = document.getElementsByName("Custom.checkSub")[0];  
  40.     if (checkSub.value == 0){  
  41.         errorinfo += "是否验证子客户为必填项,请输入!\n";  
  42.             if(isFocus){  
  43.                         checkSub.focus();  
  44.                         isFocus = false;  
  45.             }  
  46.     }  
  47.     var principalName = document.getElementsByName("Custom.principalName")[0];  
  48.     if (principalName.value == ""){  
  49.         errorinfo += "法人代表为必填项,请输入!\n";  
  50.         if(isFocus){  
  51.                     principalName.focus();  
  52.                     isFocus = false;  
  53.         }         
  54.     }  
  55.     var passportId = document.getElementsByName("Custom.passportId")[0];  
  56.     if (passportId.value == ""){  
  57.         errorinfo += "法人代表的身份证号码为必填项,请输入!\n";  
  58.         if(isFocus){  
  59.                     passportId.focus();  
  60.                     isFocus = false;  
  61.         }         
  62.     }else{  
  63.         var patrn=/^(([0-9]{14}[x0-9]{1})|([0-9]{17}[x0-9]{1}))$/;  
  64.         if (!patrn.exec(passportId.value)){  
  65.             errorinfo += "你输入法人代表的身份证号码格式不正确,请输入15位或者18位的身份证号码!\n";  
  66.             if(isFocus){  
  67.                     passportId.focus();  
  68.                     isFocus = false;  
  69.             }                             
  70.         }         
  71.     }  
  72.   
  73.     var delegateName = document.getElementsByName("DelegateInfo1.delegateName")[0];  
  74.     if (delegateName.value == ""){  
  75.         errorinfo +="客户经办人(1)姓名为必填项,请输入!\n";  
  76.         if(isFocus){  
  77.                     delegateName.focus();  
  78.                     isFocus = false;  
  79.         }                 
  80.     }  
  81.     var delegateId = document.getElementsByName("DelegateInfo1.delegateId")[0];  
  82.     if (delegateId.value == ""){  
  83.         errorinfo += "客户经办人(1)的身份证号码为必填项,请输入!\n";  
  84.         if(isFocus){  
  85.                     delegateId.focus();  
  86.                     isFocus = false;  
  87.         }                     
  88.     }else{  
  89.         var patrn=/^(([0-9]{14}[x0-9]{1})|([0-9]{17}[x0-9]{1}))$/;  
  90.         if (!patrn.exec(delegateId.value)){  
  91.                 errorinfo += "你输入的客户经办人(1)的身份证号码格式不正确,请输入15位或者18位的身份证号码!\n";  
  92.             if(isFocus){  
  93.                         delegateId.focus();  
  94.                         isFocus = false;  
  95.             }                                                 
  96.         }        
  97.     }  
  98.     var delegateDuty = document.getElementsByName("DelegateInfo1.delegateDuty")[0];  
  99.     if (delegateDuty.value == ""){  
  100.         errorinfo +="你输入客户经办人(1)的职务为必填项,请输入!\n";      
  101.             if(isFocus){  
  102.                         delegateDuty.focus();  
  103.                         isFocus = false;  
  104.             }             
  105.     }  
  106.     var delegateTelephone = document.getElementsByName("DelegateInfo1.delegateTelephone")[0];  
  107.     if (delegateTelephone.value == ""){  
  108.         errorinfo += "你输入客户经办人(1)的固定电话为必填项,请输入!\n";  
  109.             if(isFocus){  
  110.                         delegateTelephone.focus();  
  111.                         isFocus = false;  
  112.             }                     
  113.     }else{  
  114.         var patrn=/^((\(\d{2,3}\))|(\d{3}\-))?(\(0\d{2,3}\)|0\d{2,3}-)?[1-9]\d{6,7}(\-\d{1,4})?$/;    
  115.         if (!patrn.exec(delegateTelephone.value)){  
  116.             errorinfo += "你输入的固定电话格式不正确,请重新输入!\n";    
  117.             if(isFocus){  
  118.                         delegateTelephone.focus();  
  119.                         isFocus = false;  
  120.             }                                     
  121.         }   
  122.     }  
  123.     var delegateMobile = document.getElementsByName("DelegateInfo1.delegateMobile")[0];  
  124.     if (delegateMobile.value == ""){  
  125.         errorinfo += "你输入客户经办人(1)的移动电话为必填项,请输入!\n";  
  126.             if(isFocus){  
  127.                         delegateMobile.focus();  
  128.                         isFocus = false;  
  129.             }                 
  130.     }else{  
  131.         var patrn=/^((\(\d{2,3}\))|(\d{3}\-))?13\d{9}$/;  
  132.         if (!patrn.exec(delegateMobile.value)){  
  133.             errorinfo += "你输入的移动电话格式不正确,请重新输入!\n";    
  134.             if(isFocus){  
  135.                         delegateMobile.focus();  
  136.                         isFocus = false;  
  137.             }                                 
  138.         }   
  139.     }  
  140.     var delegateFax = document.getElementsByName("DelegateInfo1.delegateFax")[0];  
  141.     if (delegateFax.value == ""){  
  142.         errorinfo += "你输入客户经办人(1)的传真为必填项,请输入!\n";  
  143.             if(isFocus){  
  144.                         delegateFax.focus();  
  145.                         isFocus = false;  
  146.             }                 
  147.     }else{  
  148.         var patrn=/^((\(\d{2,3}\))|(\d{3}\-))?(\(0\d{2,3}\)|0\d{2,3}-)?[1-9]\d{6,7}(\-\d{1,4})?$/;    
  149.         if (!patrn.exec(delegateFax.value)){  
  150.             errorinfo += "你输入的传真格式不正确,请重新输入!\n";  
  151.             if(isFocus){  
  152.                         delegateFax.focus();  
  153.                         isFocus = false;  
  154.             }                                             
  155.         }   
  156.     }  
  157.     var delegateEmail = document.getElementsByName("DelegateInfo1.delegateEmail")[0];  
  158.     if (delegateEmail.value == ""){  
  159.         errorinfo += "你输入客户经办人(1)的邮箱地址为必填项,请输入!\n";  
  160.             if(isFocus){  
  161.                         delegateEmail.focus();  
  162.                         isFocus = false;  
  163.             }                 
  164.     }else{  
  165.         var patrn=/^([a-zA-Z0-9_-])+@([a-zA-Z0-9_-])+(\.[a-zA-Z0-9_-])+/;   
  166.         if (!patrn.exec(delegateEmail.value)){  
  167.             errorinfo += "你输入的邮箱地址不正确,请重新输入!\n";      
  168.             if(isFocus){  
  169.                         delegateEmail.focus();  
  170.                         isFocus = false;  
  171.             }                                     
  172.         }   
  173.     }  
  174.     //-----------------------------------------2------------------  
  175.       
  176.     var delegateId2 = document.getElementsByName("DelegateInfo2.delegateId")[0];  
  177.     if (delegateId2.value != ""){         
  178.        var patrn=/^(([0-9]{14}[x0-9]{1})|([0-9]{17}[x0-9]{1}))$/;  
  179.         if (!patrn.exec(delegateId2.value)){  
  180.                 errorinfo += "你输入的客户经办人(2)身份证号码格式不正确,请输入15位或者18位的身份证号码!\n";   
  181.                 if(isFocus){  
  182.                         delegateId2.focus();  
  183.                         isFocus = false;  
  184.                 }                                 
  185.         }        
  186.     }  
  187.     var delegateTelephone2 = document.getElementsByName("DelegateInfo2.delegateTelephone")[0];  
  188.     if (delegateTelephone2.value != ""){          
  189.         var patrn=/^((\(\d{2,3}\))|(\d{3}\-))?(\(0\d{2,3}\)|0\d{2,3}-)?[1-9]\d{6,7}(\-\d{1,4})?$/;   
  190.         if (!patrn.exec(delegateTelephone2.value)){  
  191.             errorinfo += "你输入的的客户经办人(2)固定电话格式不正确,请重新输入!\n";  
  192.                 if(isFocus){  
  193.                         delegateTelephone2.focus();  
  194.                         isFocus = false;  
  195.                 }                                                 
  196.         }   
  197.     }  
  198.     var delegateMobile2 = document.getElementsByName("DelegateInfo2.delegateMobile")[0];  
  199.     if (delegateMobile2.value != ""){         
  200.         var patrn=/^((\(\d{2,3}\))|(\d{3}\-))?13\d{9}$/;  
  201.         if (!patrn.exec(delegateMobile2.value)){  
  202.             errorinfo += "你输入的客户经办人(2)移动电话格式不正确,请重新输入!\n";  
  203.                 if(isFocus){  
  204.                         delegateMobile2.focus();  
  205.                         isFocus = false;  
  206.                 }                                             
  207.         }   
  208.     }  
  209.     var delegateFax2 = document.getElementsByName("DelegateInfo2.delegateFax")[0];  
  210.     if (delegateFax2.value != ""){        
  211.         var patrn=/^((\(\d{2,3}\))|(\d{3}\-))?(\(0\d{2,3}\)|0\d{2,3}-)?[1-9]\d{6,7}(\-\d{1,4})?$/;   
  212.         if (!patrn.exec(delegateFax2.value)){  
  213.             errorinfo += "你输入的客户经办人(2)传真格式不正确,请重新输入!\n";  
  214.                 if(isFocus){  
  215.                         delegateFax2.focus();  
  216.                         isFocus = false;  
  217.                 }                                         
  218.         }   
  219.     }  
  220.     var delegateEmail2 = document.getElementsByName("DelegateInfo2.delegateEmail")[0];  
  221.     if (delegateEmail2.value != ""){          
  222.         var patrn=/^([a-zA-Z0-9_-])+@([a-zA-Z0-9_-])+(\.[a-zA-Z0-9_-])+/;   
  223.         if (!patrn.exec(delegateEmail2.value)){  
  224.             errorinfo += "你输入的客户经办人(2)邮箱地址不正确,请重新输入!\n";  
  225.                 if(isFocus){  
  226.                         delegateEmail2.focus();  
  227.                         isFocus = false;  
  228.                 }                                         
  229.         }   
  230.     }  
  231.     var delegateName2 = document.getElementsByName("DelegateInfo2.delegateName")[0];  
  232.     if (delegateId2.value != "" ||delegateTelephone2.value !="" || delegateMobile2.value != "" ||delegateFax2.value !="" || delegateEmail2.value !=""){  
  233.         if (delegateName2.value == ""){  
  234.             errorinfo+= "客户经办人(2)姓名没有输入,请输入!";  
  235.                 if(isFocus){  
  236.                         delegateName2.focus();  
  237.                         isFocus = false;  
  238.                 }                 
  239.         }  
  240.     }   
  241.     var saleOfYear = document.getElementsByName("Custom.saleOfYear")[0];  
  242.     if (saleOfYear.value != ""){  
  243.         var patrn=/^((-?|\+?)\d+)(\.\d+)?$/;  
  244.         if (!patrn.exec(saleOfYear.value)){  
  245.             errorinfo += "你输入的年销售/营业额不正确,只能够为数字类型,请重新输入!\n";  
  246.                 if(isFocus){  
  247.                         saleOfYear.focus();  
  248.                         isFocus = false;  
  249.                 }                             
  250.         }  
  251.     }  
  252.     var payoutOfYear = document.getElementsByName("Custom.payoutOfYear")[0];  
  253.     if (payoutOfYear.value == ""){  
  254.         errorinfo += "你输入年估计/实际机票支出为必填项,请输入!\n";  
  255.             if(isFocus){  
  256.                         payoutOfYear.focus();  
  257.                         isFocus = false;  
  258.             }  
  259.     }  
  260.     else{  
  261.         var patrn=/^((-?|\+?)\d+)(\.\d+)?$/;  
  262.         if (!patrn.exec(payoutOfYear.value)){  
  263.             errorinfo += "你输入的年估计/实际机票支出不正确,只能够为数字类型,请重新输入!\n";   
  264.                 if(isFocus){  
  265.                         payoutOfYear.focus();  
  266.                         isFocus = false;  
  267.                 }                         
  268.         }  
  269.     }  
  270.     var numberOfUser = document.getElementsByName("Custom.numberOfUser")[0];  
  271.     if (numberOfUser.value == ""){  
  272.         errorinfo += "你输入机构客户人数为必填项,请输入!\n";  
  273.                 if(isFocus){  
  274.                             numberOfUser.focus();  
  275.                             isFocus = false;  
评论

相关推荐

    js验证代码大全

    JS验证代码大全是汇集了多种JavaScript验证技术的资源集合,可以帮助开发者在创建网页表单、验证用户输入等方面提供有效的解决方案。 一、表单验证基础 在网页开发中,表单验证是非常重要的一环,它能够确保用户...

    js验证数字方法js验证数字方法

    本文将详细介绍一种JavaScript验证数字的方法,并通过具体的代码示例来解释其实现原理。 #### 二、需求分析 根据题目提供的信息,我们需要实现一个功能:验证用户输入的文本框中的值是否为长度为6位的纯数字。具体...

    JS验证包,有示例.rar......

    JavaScript(简称JS)是一种轻量级的编程语言,主要用于网页和网络应用的开发。它能够直接在客户端运行,无需...通过深入研究`pubcheck.js`的源代码,我们可以学习到更多关于JavaScript验证策略和实现方式的知识。

    js验证大全,非常棒的js验证,含有多种特效,是程序员必备的东东

    "js验证大全"是一个集合了多种JavaScript验证技术和特效的资源包,对于程序员来说,它是一个非常宝贵的参考资料。 首先,我们来看一下这个压缩包中包含的文件: 1. **Default.aspx**:这是一个ASP.NET网页文件,...

    js表单验证、js导出excel、js验证

    JavaScript,简称JS,是网页开发中不可或缺的一部分,主要用于实现客户端的交互逻辑和增强用户体验。本篇文章将深入探讨三个关键知识点:JS表单验证、JS导出Excel以及JS验证。 一、JS表单验证 在Web应用程序中,...

    js验证框架

    JavaScript验证框架是Web开发中常用的一种工具,它用于在客户端对用户输入的数据进行实时检查,以确保数据的有效性和合规性,从而减少服务器端的压力并提供更好的用户体验。本项目提供的"js验证框架"是一个轻量级的...

    js 验证 自定义 类

    总结,这个"js 验证 自定义 类"框架旨在提供一种高效、灵活和可扩展的JavaScript验证解决方案。通过其内置的基本验证功能和自定义规则的能力,开发者可以轻松应对各种数据验证需求,同时保持良好的用户体验。结合...

    JS验证方法大全.

    ### JS验证方法大全 在Web开发中,JavaScript(简称JS)是一种非常重要的客户端脚本语言,广泛用于网页交互效果的实现。其中,数据验证是非常关键的一环,它可以帮助开发者确保用户输入的数据符合预期的格式或者...

    js验证错误信息.rar

    在JavaScript(JS)中,验证错误信息是网页前端开发中不可或缺的部分。这通常涉及到用户输入数据的检查,确保数据的有效性和安全性。"js验证错误信息.rar" 包含的资源显然是一个封装了验证功能的JS类,适用于文本框...

    JS验证只能输入数字

    根据给定文件的信息,本文将详细介绍如何使用JavaScript(简称JS)进行输入验证,具体包括三种情况:一是确保用户只能输入数字;二是确保用户输入的是字母、数字或下划线;三是验证固定电话号码的格式是否正确。这三...

    js验证大全,各种验证,很方便,很实用

    在Web开发中,JavaScript验证扮演着至关重要的角色,它能够提高用户体验,减少服务器负担,防止无效或错误的数据提交。本文将深入探讨JavaScript验证的各种方法和应用场景。 1. **基础验证** - **非空验证**:检查...

    修改密码时,js验证提示

    总之,JavaScript验证在密码修改过程中扮演着至关重要的角色,它可以确保用户输入的数据满足特定的安全标准,从而提高整个系统的安全性。正确实现和使用这些验证技术,对于创建一个用户友好且安全的Web应用至关重要...

    JS验证表单填写的格式是否正确的方法

    在网页开发中,JavaScript(简称JS)是一种必不可少的前端编程语言,它被广泛用于处理用户交互,其中之一就是验证用户在表单中输入的数据格式。表单验证能够确保用户提交的信息符合预设的标准,例如正确的电话号码、...

    js验证居民身份证

    js验证居民身份证,就这么简单,你懂得~

    一个js验证表单

    3. ComboBoxCheckTree.js:这是主要的JavaScript文件,很可能包含了ComboBoxCheckTree组件的逻辑代码,包括数据加载、用户交互处理、验证功能等。 4. treedata.js:这是一个可能存储树形数据的文件,数据可能以JSON...

    常用的JS验证和函数汇总

    总结来说,本文所列出的JavaScript验证和函数汇总,对于前端开发人员在处理数值和验证输入时提供了有价值的工具,不仅减少了重复编写验证代码的工作量,还确保了数据处理的准确性,提高开发效率和代码质量。...

    js验证Validator,我是佛山人

    **JavaScript验证**在Web开发中扮演着重要角色,主要用于确保用户在表单中输入的数据符合特定格式或规则,例如检查邮箱格式、手机号码合法性、密码强度等。在没有服务器端验证的情况下,JavaScript验证能提供即时...

    javascript验证方法,自己写的, 都是经常用的,欢迎下载

    JavaScript验证主要分为客户端验证和服务器端验证。客户端验证通常通过JavaScript在用户提交表单前进行,可以实时反馈错误信息,减少不必要的服务器请求,提高响应速度。而服务器端验证则是为了防止恶意用户绕过...

Global site tag (gtag.js) - Google Analytics