javascript實現根據社會安全號碼讀取相關資訊_javascript技巧

來源:互聯網
上載者:User

公民身份號碼由六位元字地址碼,八位元字出生日期碼,三位元字順序碼和一位元字校正碼組成。

地址碼 前兩位表示省,中間兩位表示市,後兩位表示縣

順序碼 表示同一地址碼所標識的地區範圍內,對同年、月、日出生的人員編定的順序號。順序碼的奇數分給男性,偶數分給女性。

校正碼 是根據前面十七位元字碼,按照ISO 7064:1983.MOD 11-2校正碼計算出來的檢驗碼。

校正碼計算方法:
    1)將前面的社會安全號碼碼17位元分別乘以不同的係數,從第一位到第十七位的係數分別為:7 9 10 5 8 4 2 1 6 3 7 9 10 5 8 4 2 ;
    2)將這17位元字和係數相乘的結果相加,用加出來和除以11,得到餘數;
    4)餘數只可能有0 1 2 3 4 5 6 7 8 9 10這11個數字,其分別對應的最後一位身份證的號碼為1 0 X 9 8 7 6 5 4 3 2。

社會安全號碼合法性驗證  支援15位和18位社會安全號碼 支援地址編碼、出生日期、校正位驗證

複製代碼 代碼如下:

<div style="padding:20px 40px;">
        <h1 style="font-size:20px;color:#999;">身份證查詢</h1>
        <input type="text" placeholder="輸入社會安全號碼" id="code">
        <input type="button" value="查詢" id="btn">
        <p id="home"><strong>籍    貫:</strong><span></span></p>
        <p id="birthday"><strong>出生日期:</strong><span></span></p>
        <p id="sex"><strong>性    別:</strong><span></span></p>
    </div>
    <script type="text/javascript">
        //去掉字串頭尾空格  
        var home='',birthday='',sex='';
        function trim(str) {  
            return str.replace(/^\s*|\s*$/g, "");  
        }
        //驗證身份證
        function IdentityCodeValid(code) {
            code=trim(code);
            var city={11:"北京",12:"天津",13:"河北",14:"山西",15:"內蒙古",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:"台灣",81:"香港",82:"澳門"};   
            if(!code || !/^\d{6}(18|19|20)?\d{2}(0[1-9]|1[012])(0[1-9]|[12]\d|3[01])\d{3}(\d|X)$/i.test(code)){
                alert("社會安全號碼格式錯誤");
                home='',birthday='',sex='';
                return false;
            }
            if(!city[code.substring(0,2)]){
                alert("地址編碼錯誤");
                home='',birthday='',sex='';
                return false;
            }
            if(code.length == 18){    //18位身份證需要驗證最後一位校正位
                var codeArr = code.split('');       
                var factor = [ 7, 9, 10, 5, 8, 4, 2, 1, 6, 3, 7, 9, 10, 5, 8, 4, 2 ];    //加權因子               
                var parity = [ 1, 0, 'X', 9, 8, 7, 6, 5, 4, 3, 2 ];                        //校正位
                var sum = 0;
                for (var i = 0; i < 17; i++){
                    sum += codeArr[i] * factor[i];
                }
                if(parity[sum % 11] != codeArr[17]){
                    alert("校正位錯誤");
                    home='',birthday='',sex='';
                    return false;
                }               
            }
            //省份
            home = city[code.substring(0,2)];   
            //生日
            birthday = code.substring(6,10)+'年'+code.substring(10,12)+'月'+code.substring(12,14)+'日';
            //性別
            if(code.length==15){
                sex = code.substring(14,15)%2==0 ? '女':'男';
            }else if(code.length==18){
                sex = code.substring(14,17)%2==0 ? '女':'男';
            }
        }
           //輸出結果
        document.querySelector('#btn').onclick=function(){
            var code=document.querySelector('#code').value;
            IdentityCodeValid(code);
            document.querySelector('#home span').innerHTML=home;
            document.querySelector('#birthday span').innerHTML=birthday;
            document.querySelector('#sex span').innerHTML=sex;
        }
    </script>

本文主要是根據公民身份證的規則,讀取相關的身份資訊,非常方便實用,推薦給大家。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.