码迷,mamicode.com
首页 > Web开发 > 详细

js验证身份证号码

时间:2018-03-10 17:46:51      阅读:225      评论:0      收藏:0      [点我收藏+]

标签:day   pos   上海   i++   bst   div   def   this   efi   

if(this.shenfenzheng !== ‘‘){
                    if(typeof this.shenfenzheng !== ‘string‘) layer.msg(‘非法字符串‘);
                    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:"澳门",91:"国外"};
                    var birthday = this.shenfenzheng.substr(6, 4) + ‘/‘ + Number(this.shenfenzheng.substr(10, 2)) + ‘/‘ + Number(this.shenfenzheng.substr(12, 2));
                    var d = new Date(birthday);
                    var newBirthday = d.getFullYear() + ‘/‘ + Number(d.getMonth() + 1) + ‘/‘ + Number(d.getDate());
                    var currentTime = new Date().getTime();
                    var time = d.getTime();
                    var arrInt = [7, 9, 10, 5, 8, 4, 2, 1, 6, 3, 7, 9, 10, 5, 8, 4, 2];
                    var arrCh = [‘1‘, ‘0‘, ‘X‘, ‘9‘, ‘8‘, ‘7‘, ‘6‘, ‘5‘, ‘4‘, ‘3‘, ‘2‘];
                    var sum = 0, i, residue;

                    if(!/^\d{17}(\d|x)$/i.test(this.shenfenzheng)) layer.msg(‘非法身份证‘);
                    if(city[this.shenfenzheng.substr(0,2)] === undefined) layer.msg("非法地区");
                    if(time >= currentTime || birthday !== newBirthday) layer.msg(‘非法生日‘);
                    for(i=0; i<17; i++) {
                        sum += this.shenfenzheng.substr(i, 1) * arrInt[i];
                    }
                    residue = arrCh[sum % 11];
                    if (residue !== this.shenfenzheng.substr(17, 1)) {
                        layer.msg(‘非法身份证‘);
                        return false;
                    }
//            return city[ID.substr(0,2)]+","+birthday+","+(ID.substr(16,1)%2?" 男":"女")
                }

 

js验证身份证号码

标签:day   pos   上海   i++   bst   div   def   this   efi   

原文地址:https://www.cnblogs.com/shark1100913/p/8540675.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!