<span id="gtlx9"></span>
    1. <span id="gtlx9"></span>
      \r\n \r\n  

      \r\n   姓名<\/label>*<\/em>\r\n   \r\n\r\n  <\/p>\r\n  

      \r\n   電子郵件<\/label>*<\/em>\r\n   \r\n\r\n  <\/p>\r\n  

      \r\n   身份證號(hào)<\/label>*<\/em>\r\n   \r\n\r\n  <\/p>\r\n  

      \r\n   護(hù)照編號(hào)<\/label>*<\/em>\r\n   \r\n\r\n  <\/p>\r\n  

      \r\n   電話號(hào)碼<\/label>*<\/em>\r\n   \r\n\r\n  <\/p>\r\n <\/form>\r\n<\/body>\r\n<\/html><\/pre>

      validata.js<\/p>

        $(function(){\r\n\r\n  $.validator.setDefaults({ \r\n     submitHandler: function(form) { \r\n      form.submit(); \r\n     } \r\n  }); \r\n  \/\/ 字符驗(yàn)證 \r\n  jQuery.validator.addMethod(\"stringCheck\", function(value, element) { \r\n     return this.optional(element) || \/^[\\u0391-\\uFFE5\\w]+$\/.test(value); \r\n  }, \"只能包括中文字、英文字母、數(shù)字和下劃線\"); \r\n  \/\/ 中文字兩個(gè)字節(jié) \r\n  jQuery.validator.addMethod(\"byteRangeLength\", function(value, element, param) { \r\n     var length = value.length; \r\n    for(var i = 0; i < value.length; i++){ \r\n  if(value.charCodeAt(i) > 127){ \r\n  length++; \r\n  } \r\n  } \r\n  return this.optional(element) || ( length >= param[0] && length <= param[1] ); \r\n}, \"請(qǐng)確保輸入的值在3-15個(gè)字節(jié)之間(一個(gè)中文字算2個(gè)字節(jié))\"); \r\n\r\n\/\/ 身份證號(hào)碼驗(yàn)證 \r\njQuery.validator.addMethod(\"isIdCardNo\", function(value, element) { \r\n  return this.optional(element) || idCardNoUtil.checkIdCardNo(value);     \r\n}, \"請(qǐng)正確輸入您的身份證號(hào)碼\"); \r\n\/\/護(hù)照編號(hào)驗(yàn)證\r\n jQuery.validator.addMethod(\"passport\", function(value, element) { \r\n  return this.optional(element) || checknumber(value);     \r\n}, \"請(qǐng)正確輸入您的護(hù)照編號(hào)\"); \r\n\r\n\/\/ 手機(jī)號(hào)碼驗(yàn)證 \r\njQuery.validator.addMethod(\"isMobile\", function(value, element) { \r\n  var length = value.length; \r\n  var mobile = \/^(((13[0-9]{1})|(15[0-9]{1}))+\\d{8})$\/; \r\n  return this.optional(element) || (length == 11 && mobile.test(value)); \r\n}, \"請(qǐng)正確填寫您的手機(jī)號(hào)碼\"); \r\n\r\n\/\/ 電話號(hào)碼驗(yàn)證 \r\njQuery.validator.addMethod(\"isTel\", function(value, element) { \r\n  var tel = \/^\\d{3,4}-?\\d{7,9}$\/; \/\/電話號(hào)碼格式010-12345678 \r\n  return this.optional(element) || (tel.test(value)); \r\n}, \"請(qǐng)正確填寫您的電話號(hào)碼\"); \r\n\r\n\/\/ 聯(lián)系電話(手機(jī)\/電話皆可)驗(yàn)證 \r\njQuery.validator.addMethod(\"isPhone\", function(value,element) { \r\n  var length = value.length; \r\n  var mobile = \/^(((13[0-9]{1})|(15[0-9]{1}))+\\d{8})$\/; \r\n  var tel = \/^\\d{3,4}-?\\d{7,9}$\/; \r\n  return this.optional(element) || (tel.test(value) || mobile.test(value)); \r\n\r\n}, \"請(qǐng)正確填寫您的聯(lián)系電話\"); \r\n\r\n\/\/ 郵政編碼驗(yàn)證 \r\njQuery.validator.addMethod(\"isZipCode\", function(value, element) { \r\n  var tel = \/^[0-9]{6}$\/; \r\n  return this.optional(element) || (tel.test(value)); \r\n}, \"請(qǐng)正確填寫您的郵政編碼\"); \r\n\r\n\/\/開(kāi)始驗(yàn)證 \r\n$('#commentForm').validate({ \r\n\r\n  rules: { \r\n  username: { \r\n  required:true, \r\n  stringCheck:true, \r\n  byteRangeLength:[3,15] \r\n  }, \r\n  email:{ \r\n  required:true, \r\n  email:true \r\n  }, \r\n  phone:{ \r\n  required:true, \r\n  isMobile:true \r\n  }, \r\n  address:{ \r\n  required:true, \r\n  stringCheck:true, \r\n  byteRangeLength:[3,100] \r\n  },\r\n  card:{\r\n   required:true,\r\n   isIdCardNo:true\r\n\r\n  },\r\n    passport:{\r\n   required:true,\r\n   passport:true\r\n\r\n  }\r\n  }, \r\n\r\n   \r\n  messages:{ \r\n  username: { \r\n  required: \"請(qǐng)?zhí)顚懹脩裘鸤", \r\n  stringCheck: \"用戶名只能包括中文字、英文字母、數(shù)字和下劃線\", \r\n  byteRangeLength: \"用戶名必須在3-15個(gè)字符之間(一個(gè)中文字算2個(gè)字符)\" \r\n  }, \r\n  email:{ \r\n  required: \"請(qǐng)輸入一個(gè)Email地址<\/fond>\", \r\n  email: \"請(qǐng)輸入一個(gè)有效的Email地址\" \r\n  }, \r\n  phone:{ \r\n  required: \"請(qǐng)輸入您的聯(lián)系電話\", \r\n  isPhone: \"請(qǐng)輸入一個(gè)有效的聯(lián)系電話\" \r\n  }, \r\n  address:{ \r\n  required: \"請(qǐng)輸入您的聯(lián)系地址\", \r\n  stringCheck: \"請(qǐng)正確輸入您的聯(lián)系地址\", \r\n  byteRangeLength: \"請(qǐng)?jiān)攲?shí)您的聯(lián)系地址以便于我們聯(lián)系您\" \r\n  },\r\n  card:{\r\n  required:\"請(qǐng)輸入身份證號(hào)\",\r\n  isIdCardNo:\"請(qǐng)輸入正確的身份證號(hào)\"\r\n  },\r\n  passport:{\r\n  required:\"請(qǐng)輸入護(hù)照編號(hào)\",\r\n  passport:\"請(qǐng)輸入正確的護(hù)照編號(hào)\"\r\n  }\r\n  }, \r\n\r\n   \r\n  focusInvalid: false, \r\n  onkeyup: false, \r\n\r\n   \r\n  errorPlacement: function(error, element) { \r\n  error.appendTo( element.parent()); \r\n  }, \r\n  errorElement:\"em\",\r\n  error:function(label){label.text(\" \").addClass(\"error\");}\r\n  });  \r\n})<\/pre>

      card.js<\/p>

      var idCardNoUtil = {\r\nprovinceAndCitys: {11:\"北京\",12:\"天津\",13:\"河北\",14:\"山西\",15:\"內(nèi)蒙古\",21:\"遼寧\",22:\"吉林\",23:\"黑龍江\",\r\n31:\"上海\",32:\"江蘇\",33:\"浙江\",34:\"安徽\(chéng)",35:\"福建\",36:\"江西\",37:\"山東\",41:\"河南\",42:\"湖北\",43:\"湖南\",44:\"廣東\",\r\n45:\"廣西\",46:\"海南\",50:\"重慶\",51:\"四川\",52:\"貴州\",53:\"云南\",54:\"西藏\",61:\"陜西\",62:\"甘肅\",63:\"青海\",64:\"寧夏\",\r\n65:\"新疆\",71:\"臺(tái)灣\",81:\"香港\",82:\"澳門\",91:\"國(guó)外\"},\r\n\r\npowers: [\"7\",\"9\",\"10\",\"5\",\"8\",\"4\",\"2\",\"1\",\"6\",\"3\",\"7\",\"9\",\"10\",\"5\",\"8\",\"4\",\"2\"],\r\n\r\nparityBit: [\"1\",\"0\",\"X\",\"9\",\"8\",\"7\",\"6\",\"5\",\"4\",\"3\",\"2\"],\r\n\r\ngenders: {male:\"男\(zhòng)",female:\"女\"},\r\n\r\ncheckAddressCode: function(addressCode){\r\nvar check = \/^[1-9]\\d{5}$\/.test(addressCode);\r\nif(!check) return false;\r\nif(idCardNoUtil.provinceAndCitys[parseInt(addressCode.substring(0,2))]){\r\nreturn true;\r\n}else{\r\nreturn false;\r\n}\r\n},\r\n\r\ncheckBirthDayCode: function(birDayCode){\r\nvar check = \/^[1-9]\\d{3}((0[1-9])|(1[0-2]))((0[1-9])|([1-2][0-9])|(3[0-1]))$\/.test(birDayCode);\r\nif(!check) return false;\r\nvar yyyy = parseInt(birDayCode.substring(0,4),10);\r\nvar mm = parseInt(birDayCode.substring(4,6),10);\r\nvar dd = parseInt(birDayCode.substring(6),10);\r\nvar xdata = new Date(yyyy,mm-1,dd);\r\nif(xdata > new Date()){\r\nreturn false;\/\/生日不能大于當(dāng)前日期\r\n}else if ( ( xdata.getFullYear() == yyyy ) && ( xdata.getMonth () == mm - 1 ) && ( xdata.getDate() == dd ) ){\r\nreturn true;\r\n}else{\r\nreturn false;\r\n}\r\n},\r\n\r\ngetParityBit: function(idCardNo){\r\nvar id17 = idCardNo.substring(0,17);\r\nvar power = 0;\r\nfor(var i=0;i<17;i++){\r\npower += parseInt(id17.charAt(i),10) * parseInt(idCardNoUtil.powers[i]);\r\n}\r\nvar mod = power % 11;\r\nreturn idCardNoUtil.parityBit[mod];\r\n},\r\n\r\ncheckParityBit: function(idCardNo){\r\nvar parityBit = idCardNo.charAt(17).toUpperCase();\r\nif(idCardNoUtil.getParityBit(idCardNo) == parityBit){\r\nreturn true;\r\n}else{\r\nreturn false;\r\n}\r\n},\r\n\r\ncheckIdCardNo: function(idCardNo){\r\n\/\/15位和18位身份證號(hào)碼的基本校驗(yàn)\r\nvar check = \/^\\d{15}|(\\d{17}(\\d|x|X))$\/.test(idCardNo);\r\nif(!check) return false;\r\n\/\/判斷長(zhǎng)度為15位或18位\r\nif(idCardNo.length==15){\r\nreturn idCardNoUtil.check15IdCardNo(idCardNo);\r\n}else if(idCardNo.length==18){\r\nreturn idCardNoUtil.check18IdCardNo(idCardNo);\r\n}else{\r\nreturn false;\r\n}\r\n},\r\n\/\/校驗(yàn)15位的身份證號(hào)碼\r\ncheck15IdCardNo: function(idCardNo){\r\n\/\/15位身份證號(hào)碼的基本校驗(yàn)\r\nvar check = \/^[1-9]\\d{7}((0[1-9])|(1[0-2]))((0[1-9])|([1-2][0-9])|(3[0-1]))\\d{3}$\/.test(idCardNo);\r\nif(!check) return false;\r\n\/\/校驗(yàn)地址碼\r\nvar addressCode = idCardNo.substring(0,6);\r\ncheck = idCardNoUtil.checkAddressCode(addressCode);\r\nif(!check) return false;\r\nvar birDayCode = '19' + idCardNo.substring(6,12);\r\n\/\/校驗(yàn)日期碼\r\nreturn idCardNoUtil.checkBirthDayCode(birDayCode);\r\n},\r\n\/\/校驗(yàn)18位的身份證號(hào)碼\r\ncheck18IdCardNo: function(idCardNo){\r\n\/\/18位身份證號(hào)碼的基本格式校驗(yàn)\r\nvar check = \/^[1-9]\\d{5}[1-9]\\d{3}((0[1-9])|(1[0-2]))((0[1-9])|([1-2][0-9])|(3[0-1]))\\d{3}(\\d|x|X)$\/.test(idCardNo);\r\nif(!check) return false;\r\n\/\/校驗(yàn)地址碼\r\nvar addressCode = idCardNo.substring(0,6);\r\ncheck = idCardNoUtil.checkAddressCode(addressCode);\r\nif(!check) return false;\r\n\/\/校驗(yàn)日期碼\r\nvar birDayCode = idCardNo.substring(6,14);\r\ncheck = idCardNoUtil.checkBirthDayCode(birDayCode);\r\nif(!check) return false;\r\n\/\/驗(yàn)證校檢碼\r\nreturn idCardNoUtil.checkParityBit(idCardNo);\r\n},\r\nformateDateCN: function(day){\r\nvar yyyy =day.substring(0,4);\r\nvar mm = day.substring(4,6);\r\nvar dd = day.substring(6);\r\nreturn yyyy + '-' + mm +'-' + dd;\r\n},\r\n\/\/獲取信息\r\ngetIdCardInfo: function(idCardNo){\r\nvar idCardInfo = {\r\ngender:\"\", \/\/性別\r\nbirthday:\"\" \/\/ 出生日期(yyyy-mm-dd)\r\n};\r\nif(idCardNo.length==15){\r\nvar aday = '19' + idCardNo.substring(6,12);\r\nidCardInfo.birthday=idCardNoUtil.formateDateCN(aday);\r\nif(parseInt(idCardNo.charAt(14))%2==0){\r\nidCardInfo.gender=idCardNoUtil.genders.female;\r\n}else{\r\nidCardInfo.gender=idCardNoUtil.genders.male;\r\n}\r\n}else if(idCardNo.length==18){\r\nvar aday = idCardNo.substring(6,14);\r\nidCardInfo.birthday=idCardNoUtil.formateDateCN(aday);\r\nif(parseInt(idCardNo.charAt(16))%2==0){\r\nidCardInfo.gender=idCardNoUtil.genders.female;\r\n}else{\r\nidCardInfo.gender=idCardNoUtil.genders.male;\r\n}\r\n}\r\nreturn idCardInfo;\r\n},\r\n\r\ngetId15:function(idCardNo){\r\nif(idCardNo.length==15){\r\nreturn idCardNo;\r\n}else if(idCardNo.length==18){\r\nreturn idCardNo.substring(0,6) + idCardNo.substring(8,17);\r\n}else{\r\nreturn null;\r\n}\r\n},\r\n\r\ngetId18: function(idCardNo){\r\nif(idCardNo.length==15){\r\nvar id17 = idCardNo.substring(0,6) + '19' + idCardNo.substring(6);\r\nvar parityBit = idCardNoUtil.getParityBit(id17);\r\nreturn id17 + parityBit;\r\n}else if(idCardNo.length==18){\r\nreturn idCardNo;\r\n}else{\r\nreturn null;\r\n}\r\n}\r\n};\r\n\/\/驗(yàn)證護(hù)照是否正確\r\nfunction checknumber(number){\r\nvar str=number;\r\n\/\/在JavaScript中,正則表達(dá)式只能使用\"\/\"開(kāi)頭和結(jié)束,不能使用雙引號(hào)\r\nvar Expression=\/(P\\d{7})|(G\\d{8})\/;\r\nvar objExp=new RegExp(Expression);\r\nif(objExp.test(str)==true){\r\n   return true;\r\n}else{\r\n   return false;\r\n} \r\n};<\/pre>


      <\/p>\n

      More jquery validation to verify ID number , passport, phone number, email (example code) related articles please pay attention to the PHP Chinese website! <\/p>\n


      <\/p>"}

      国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

      Home Web Front-end JS Tutorial jquery validation verifies ID number, passport, phone number, email (example code)

      jquery validation verifies ID number, passport, phone number, email (example code)

      Jan 07, 2017 am 10:00 AM

      validata.htm

      <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
      <html xmlns="http://www.w3.org/1999/xhtml">
      <head>
      <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
      <!-- TemplateBeginEditable name="doctitle" -->
      <title>無(wú)標(biāo)題文檔</title>
      <script src="lib/jquery.js" type="text/javascript"></script>
      <script src="lib/jquery.validate.js" type="text/javascript"></script>
      <script src="lib/card.js" type="text/javascript"></script>
      <script src="lib/validata.js" type="text/javascript"></script>
      <style type="text/css">
       em.success{
        background:url("images/tips_arrow.gif") no-repeat left 0px;
        padding-left:16px;
        margin-left:2px;
       }
       em.error{
        background:url("images/tips_arrow.gif") no-repeat left -51px;
        display:inline;
        padding-left:10px;
        font-style:normal;
        font-size:11px;
        margin-left:2px;
        font-family:12px/162% Arial, Helvetica, sans-serif;
      
       }
      </style>
      </head>
      <body>
       <form class="cmsform" id="commentForm" method="get" action="">
        <p>
         <label for="cusername">姓名</label><em>*</em>
         <input id="cusername" name="username" size="25" />
      
        </p>
        <p>
         <label for="cemail">電子郵件</label><em>*</em>
         <input id="cemail" name="email" size="25" />
      
        </p>
        <p>
         <label for="card">身份證號(hào)</label><em>*</em>
         <input id="card" name="card" size="25"/>
      
        </p>
        <p>
         <label for="passport">護(hù)照編號(hào)</label><em>*</em>
         <input id="passport" name="passport" size="25"/>
      
        </p>
        <p>
         <label for="phone">電話號(hào)碼</label><em>*</em>
         <input id="phone" name="phone" size="25" />
      
        </p>
       </form>
      </body>
      </html>

      validata.js

        $(function(){
      
        $.validator.setDefaults({ 
           submitHandler: function(form) { 
            form.submit(); 
           } 
        }); 
        // 字符驗(yàn)證 
        jQuery.validator.addMethod("stringCheck", function(value, element) { 
           return this.optional(element) || /^[\u0391-\uFFE5\w]+$/.test(value); 
        }, "只能包括中文字、英文字母、數(shù)字和下劃線"); 
        // 中文字兩個(gè)字節(jié) 
        jQuery.validator.addMethod("byteRangeLength", function(value, element, param) { 
           var length = value.length; 
          for(var i = 0; i < value.length; i++){ 
        if(value.charCodeAt(i) > 127){ 
        length++; 
        } 
        } 
        return this.optional(element) || ( length >= param[0] && length <= param[1] ); 
      }, "請(qǐng)確保輸入的值在3-15個(gè)字節(jié)之間(一個(gè)中文字算2個(gè)字節(jié))"); 
      
      // 身份證號(hào)碼驗(yàn)證 
      jQuery.validator.addMethod("isIdCardNo", function(value, element) { 
        return this.optional(element) || idCardNoUtil.checkIdCardNo(value);     
      }, "請(qǐng)正確輸入您的身份證號(hào)碼"); 
      //護(hù)照編號(hào)驗(yàn)證
       jQuery.validator.addMethod("passport", function(value, element) { 
        return this.optional(element) || checknumber(value);     
      }, "請(qǐng)正確輸入您的護(hù)照編號(hào)"); 
      
      // 手機(jī)號(hào)碼驗(yàn)證 
      jQuery.validator.addMethod("isMobile", function(value, element) { 
        var length = value.length; 
        var mobile = /^(((13[0-9]{1})|(15[0-9]{1}))+\d{8})$/; 
        return this.optional(element) || (length == 11 && mobile.test(value)); 
      }, "請(qǐng)正確填寫您的手機(jī)號(hào)碼"); 
      
      // 電話號(hào)碼驗(yàn)證 
      jQuery.validator.addMethod("isTel", function(value, element) { 
        var tel = /^\d{3,4}-?\d{7,9}$/; //電話號(hào)碼格式010-12345678 
        return this.optional(element) || (tel.test(value)); 
      }, "請(qǐng)正確填寫您的電話號(hào)碼"); 
      
      // 聯(lián)系電話(手機(jī)/電話皆可)驗(yàn)證 
      jQuery.validator.addMethod("isPhone", function(value,element) { 
        var length = value.length; 
        var mobile = /^(((13[0-9]{1})|(15[0-9]{1}))+\d{8})$/; 
        var tel = /^\d{3,4}-?\d{7,9}$/; 
        return this.optional(element) || (tel.test(value) || mobile.test(value)); 
      
      }, "請(qǐng)正確填寫您的聯(lián)系電話"); 
      
      // 郵政編碼驗(yàn)證 
      jQuery.validator.addMethod("isZipCode", function(value, element) { 
        var tel = /^[0-9]{6}$/; 
        return this.optional(element) || (tel.test(value)); 
      }, "請(qǐng)正確填寫您的郵政編碼"); 
      
      //開(kāi)始驗(yàn)證 
      $(&#39;#commentForm&#39;).validate({ 
      
        rules: { 
        username: { 
        required:true, 
        stringCheck:true, 
        byteRangeLength:[3,15] 
        }, 
        email:{ 
        required:true, 
        email:true 
        }, 
        phone:{ 
        required:true, 
        isMobile:true 
        }, 
        address:{ 
        required:true, 
        stringCheck:true, 
        byteRangeLength:[3,100] 
        },
        card:{
         required:true,
         isIdCardNo:true
      
        },
          passport:{
         required:true,
         passport:true
      
        }
        }, 
      
         
        messages:{ 
        username: { 
        required: "請(qǐng)?zhí)顚懹脩裘?quot;, 
        stringCheck: "用戶名只能包括中文字、英文字母、數(shù)字和下劃線", 
        byteRangeLength: "用戶名必須在3-15個(gè)字符之間(一個(gè)中文字算2個(gè)字符)" 
        }, 
        email:{ 
        required: "<font color=red>請(qǐng)輸入一個(gè)Email地址</fond>", 
        email: "請(qǐng)輸入一個(gè)有效的Email地址" 
        }, 
        phone:{ 
        required: "請(qǐng)輸入您的聯(lián)系電話", 
        isPhone: "請(qǐng)輸入一個(gè)有效的聯(lián)系電話" 
        }, 
        address:{ 
        required: "請(qǐng)輸入您的聯(lián)系地址", 
        stringCheck: "請(qǐng)正確輸入您的聯(lián)系地址", 
        byteRangeLength: "請(qǐng)?jiān)攲?shí)您的聯(lián)系地址以便于我們聯(lián)系您" 
        },
        card:{
        required:"請(qǐng)輸入身份證號(hào)",
        isIdCardNo:"請(qǐng)輸入正確的身份證號(hào)"
        },
        passport:{
        required:"請(qǐng)輸入護(hù)照編號(hào)",
        passport:"請(qǐng)輸入正確的護(hù)照編號(hào)"
        }
        }, 
      
         
        focusInvalid: false, 
        onkeyup: false, 
      
         
        errorPlacement: function(error, element) { 
        error.appendTo( element.parent()); 
        }, 
        errorElement:"em",
        error:function(label){label.text(" ").addClass("error");}
        });  
      })

      card.js

      var idCardNoUtil = {
      provinceAndCitys: {11:"北京",12:"天津",13:"河北",14:"山西",15:"內(nèi)蒙古",21:"遼寧",22:"吉林",23:"黑龍江",
      31:"上海",32:"江蘇",33:"浙江",34:"安徽",35:"福建",36:"江西",37:"山東",41:"河南",42:"湖北",43:"湖南",44:"廣東",
      45:"廣西",46:"海南",50:"重慶",51:"四川",52:"貴州",53:"云南",54:"西藏",61:"陜西",62:"甘肅",63:"青海",64:"寧夏",
      65:"新疆",71:"臺(tái)灣",81:"香港",82:"澳門",91:"國(guó)外"},
      
      powers: ["7","9","10","5","8","4","2","1","6","3","7","9","10","5","8","4","2"],
      
      parityBit: ["1","0","X","9","8","7","6","5","4","3","2"],
      
      genders: {male:"男",female:"女"},
      
      checkAddressCode: function(addressCode){
      var check = /^[1-9]\d{5}$/.test(addressCode);
      if(!check) return false;
      if(idCardNoUtil.provinceAndCitys[parseInt(addressCode.substring(0,2))]){
      return true;
      }else{
      return false;
      }
      },
      
      checkBirthDayCode: function(birDayCode){
      var check = /^[1-9]\d{3}((0[1-9])|(1[0-2]))((0[1-9])|([1-2][0-9])|(3[0-1]))$/.test(birDayCode);
      if(!check) return false;
      var yyyy = parseInt(birDayCode.substring(0,4),10);
      var mm = parseInt(birDayCode.substring(4,6),10);
      var dd = parseInt(birDayCode.substring(6),10);
      var xdata = new Date(yyyy,mm-1,dd);
      if(xdata > new Date()){
      return false;//生日不能大于當(dāng)前日期
      }else if ( ( xdata.getFullYear() == yyyy ) && ( xdata.getMonth () == mm - 1 ) && ( xdata.getDate() == dd ) ){
      return true;
      }else{
      return false;
      }
      },
      
      getParityBit: function(idCardNo){
      var id17 = idCardNo.substring(0,17);
      var power = 0;
      for(var i=0;i<17;i++){
      power += parseInt(id17.charAt(i),10) * parseInt(idCardNoUtil.powers[i]);
      }
      var mod = power % 11;
      return idCardNoUtil.parityBit[mod];
      },
      
      checkParityBit: function(idCardNo){
      var parityBit = idCardNo.charAt(17).toUpperCase();
      if(idCardNoUtil.getParityBit(idCardNo) == parityBit){
      return true;
      }else{
      return false;
      }
      },
      
      checkIdCardNo: function(idCardNo){
      //15位和18位身份證號(hào)碼的基本校驗(yàn)
      var check = /^\d{15}|(\d{17}(\d|x|X))$/.test(idCardNo);
      if(!check) return false;
      //判斷長(zhǎng)度為15位或18位
      if(idCardNo.length==15){
      return idCardNoUtil.check15IdCardNo(idCardNo);
      }else if(idCardNo.length==18){
      return idCardNoUtil.check18IdCardNo(idCardNo);
      }else{
      return false;
      }
      },
      //校驗(yàn)15位的身份證號(hào)碼
      check15IdCardNo: function(idCardNo){
      //15位身份證號(hào)碼的基本校驗(yàn)
      var check = /^[1-9]\d{7}((0[1-9])|(1[0-2]))((0[1-9])|([1-2][0-9])|(3[0-1]))\d{3}$/.test(idCardNo);
      if(!check) return false;
      //校驗(yàn)地址碼
      var addressCode = idCardNo.substring(0,6);
      check = idCardNoUtil.checkAddressCode(addressCode);
      if(!check) return false;
      var birDayCode = &#39;19&#39; + idCardNo.substring(6,12);
      //校驗(yàn)日期碼
      return idCardNoUtil.checkBirthDayCode(birDayCode);
      },
      //校驗(yàn)18位的身份證號(hào)碼
      check18IdCardNo: function(idCardNo){
      //18位身份證號(hào)碼的基本格式校驗(yàn)
      var check = /^[1-9]\d{5}[1-9]\d{3}((0[1-9])|(1[0-2]))((0[1-9])|([1-2][0-9])|(3[0-1]))\d{3}(\d|x|X)$/.test(idCardNo);
      if(!check) return false;
      //校驗(yàn)地址碼
      var addressCode = idCardNo.substring(0,6);
      check = idCardNoUtil.checkAddressCode(addressCode);
      if(!check) return false;
      //校驗(yàn)日期碼
      var birDayCode = idCardNo.substring(6,14);
      check = idCardNoUtil.checkBirthDayCode(birDayCode);
      if(!check) return false;
      //驗(yàn)證校檢碼
      return idCardNoUtil.checkParityBit(idCardNo);
      },
      formateDateCN: function(day){
      var yyyy =day.substring(0,4);
      var mm = day.substring(4,6);
      var dd = day.substring(6);
      return yyyy + &#39;-&#39; + mm +&#39;-&#39; + dd;
      },
      //獲取信息
      getIdCardInfo: function(idCardNo){
      var idCardInfo = {
      gender:"", //性別
      birthday:"" // 出生日期(yyyy-mm-dd)
      };
      if(idCardNo.length==15){
      var aday = &#39;19&#39; + idCardNo.substring(6,12);
      idCardInfo.birthday=idCardNoUtil.formateDateCN(aday);
      if(parseInt(idCardNo.charAt(14))%2==0){
      idCardInfo.gender=idCardNoUtil.genders.female;
      }else{
      idCardInfo.gender=idCardNoUtil.genders.male;
      }
      }else if(idCardNo.length==18){
      var aday = idCardNo.substring(6,14);
      idCardInfo.birthday=idCardNoUtil.formateDateCN(aday);
      if(parseInt(idCardNo.charAt(16))%2==0){
      idCardInfo.gender=idCardNoUtil.genders.female;
      }else{
      idCardInfo.gender=idCardNoUtil.genders.male;
      }
      }
      return idCardInfo;
      },
      
      getId15:function(idCardNo){
      if(idCardNo.length==15){
      return idCardNo;
      }else if(idCardNo.length==18){
      return idCardNo.substring(0,6) + idCardNo.substring(8,17);
      }else{
      return null;
      }
      },
      
      getId18: function(idCardNo){
      if(idCardNo.length==15){
      var id17 = idCardNo.substring(0,6) + &#39;19&#39; + idCardNo.substring(6);
      var parityBit = idCardNoUtil.getParityBit(id17);
      return id17 + parityBit;
      }else if(idCardNo.length==18){
      return idCardNo;
      }else{
      return null;
      }
      }
      };
      //驗(yàn)證護(hù)照是否正確
      function checknumber(number){
      var str=number;
      //在JavaScript中,正則表達(dá)式只能使用"/"開(kāi)頭和結(jié)束,不能使用雙引號(hào)
      var Expression=/(P\d{7})|(G\d{8})/;
      var objExp=new RegExp(Expression);
      if(objExp.test(str)==true){
         return true;
      }else{
         return false;
      } 
      };


      More jquery validation to verify ID number , passport, phone number, email (example code) related articles please pay attention to the PHP Chinese website!


      Statement of this Website
      The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

      Hot AI Tools

      Undress AI Tool

      Undress AI Tool

      Undress images for free

      Undresser.AI Undress

      Undresser.AI Undress

      AI-powered app for creating realistic nude photos

      AI Clothes Remover

      AI Clothes Remover

      Online AI tool for removing clothes from photos.

      Clothoff.io

      Clothoff.io

      AI clothes remover

      Video Face Swap

      Video Face Swap

      Swap faces in any video effortlessly with our completely free AI face swap tool!

      Hot Tools

      Notepad++7.3.1

      Notepad++7.3.1

      Easy-to-use and free code editor

      SublimeText3 Chinese version

      SublimeText3 Chinese version

      Chinese version, very easy to use

      Zend Studio 13.0.1

      Zend Studio 13.0.1

      Powerful PHP integrated development environment

      Dreamweaver CS6

      Dreamweaver CS6

      Visual web development tools

      SublimeText3 Mac version

      SublimeText3 Mac version

      God-level code editing software (SublimeText3)

      Hot Topics

      PHP Tutorial
      1502
      276
      How to make an HTTP request in Node.js? How to make an HTTP request in Node.js? Jul 13, 2025 am 02:18 AM

      There are three common ways to initiate HTTP requests in Node.js: use built-in modules, axios, and node-fetch. 1. Use the built-in http/https module without dependencies, which is suitable for basic scenarios, but requires manual processing of data stitching and error monitoring, such as using https.get() to obtain data or send POST requests through .write(); 2.axios is a third-party library based on Promise. It has concise syntax and powerful functions, supports async/await, automatic JSON conversion, interceptor, etc. It is recommended to simplify asynchronous request operations; 3.node-fetch provides a style similar to browser fetch, based on Promise and simple syntax

      JavaScript Data Types: Primitive vs Reference JavaScript Data Types: Primitive vs Reference Jul 13, 2025 am 02:43 AM

      JavaScript data types are divided into primitive types and reference types. Primitive types include string, number, boolean, null, undefined, and symbol. The values are immutable and copies are copied when assigning values, so they do not affect each other; reference types such as objects, arrays and functions store memory addresses, and variables pointing to the same object will affect each other. Typeof and instanceof can be used to determine types, but pay attention to the historical issues of typeofnull. Understanding these two types of differences can help write more stable and reliable code.

      JavaScript time object, someone builds an eactexe, faster website on Google Chrome, etc. JavaScript time object, someone builds an eactexe, faster website on Google Chrome, etc. Jul 08, 2025 pm 02:27 PM

      Hello, JavaScript developers! Welcome to this week's JavaScript news! This week we will focus on: Oracle's trademark dispute with Deno, new JavaScript time objects are supported by browsers, Google Chrome updates, and some powerful developer tools. Let's get started! Oracle's trademark dispute with Deno Oracle's attempt to register a "JavaScript" trademark has caused controversy. Ryan Dahl, the creator of Node.js and Deno, has filed a petition to cancel the trademark, and he believes that JavaScript is an open standard and should not be used by Oracle

      Handling Promises: Chaining, Error Handling, and Promise Combinators in JavaScript Handling Promises: Chaining, Error Handling, and Promise Combinators in JavaScript Jul 08, 2025 am 02:40 AM

      Promise is the core mechanism for handling asynchronous operations in JavaScript. Understanding chain calls, error handling and combiners is the key to mastering their applications. 1. The chain call returns a new Promise through .then() to realize asynchronous process concatenation. Each .then() receives the previous result and can return a value or a Promise; 2. Error handling should use .catch() to catch exceptions to avoid silent failures, and can return the default value in catch to continue the process; 3. Combinators such as Promise.all() (successfully successful only after all success), Promise.race() (the first completion is returned) and Promise.allSettled() (waiting for all completions)

      What is the cache API and how is it used with Service Workers? What is the cache API and how is it used with Service Workers? Jul 08, 2025 am 02:43 AM

      CacheAPI is a tool provided by the browser to cache network requests, which is often used in conjunction with ServiceWorker to improve website performance and offline experience. 1. It allows developers to manually store resources such as scripts, style sheets, pictures, etc.; 2. It can match cache responses according to requests; 3. It supports deleting specific caches or clearing the entire cache; 4. It can implement cache priority or network priority strategies through ServiceWorker listening to fetch events; 5. It is often used for offline support, speed up repeated access speed, preloading key resources and background update content; 6. When using it, you need to pay attention to cache version control, storage restrictions and the difference from HTTP caching mechanism.

      JS roundup: a deep dive into the JavaScript event loop JS roundup: a deep dive into the JavaScript event loop Jul 08, 2025 am 02:24 AM

      JavaScript's event loop manages asynchronous operations by coordinating call stacks, WebAPIs, and task queues. 1. The call stack executes synchronous code, and when encountering asynchronous tasks, it is handed over to WebAPI for processing; 2. After the WebAPI completes the task in the background, it puts the callback into the corresponding queue (macro task or micro task); 3. The event loop checks whether the call stack is empty. If it is empty, the callback is taken out from the queue and pushed into the call stack for execution; 4. Micro tasks (such as Promise.then) take precedence over macro tasks (such as setTimeout); 5. Understanding the event loop helps to avoid blocking the main thread and optimize the code execution order.

      Understanding Event Bubbling and Capturing in JavaScript DOM events Understanding Event Bubbling and Capturing in JavaScript DOM events Jul 08, 2025 am 02:36 AM

      Event bubbles propagate from the target element outward to the ancestor node, while event capture propagates from the outer layer inward to the target element. 1. Event bubbles: After clicking the child element, the event triggers the listener of the parent element upwards in turn. For example, after clicking the button, it outputs Childclicked first, and then Parentclicked. 2. Event capture: Set the third parameter to true, so that the listener is executed in the capture stage, such as triggering the capture listener of the parent element before clicking the button. 3. Practical uses include unified management of child element events, interception preprocessing and performance optimization. 4. The DOM event stream is divided into three stages: capture, target and bubble, and the default listener is executed in the bubble stage.

      A JS roundup of higher-order functions beyond map and filter A JS roundup of higher-order functions beyond map and filter Jul 10, 2025 am 11:41 AM

      In JavaScript arrays, in addition to map and filter, there are other powerful and infrequently used methods. 1. Reduce can not only sum, but also count, group, flatten arrays, and build new structures; 2. Find and findIndex are used to find individual elements or indexes; 3.some and everything are used to determine whether conditions exist or all meet; 4.sort can be sorted but will change the original array; 5. Pay attention to copying the array when using it to avoid side effects. These methods make the code more concise and efficient.

      See all articles