添加身份证识别
This commit is contained in:
@@ -8,9 +8,9 @@
|
||||
|
||||
[pcas-code.json](https://github.com/modood/Administrative-divisions-of-China/blob/master/dist/pcas-code.json)
|
||||
|
||||
## 支持以下数据格式(地址、姓名、电话、邮编用空格分开!!)
|
||||
## 支持以下数据格式(地址、姓名、电话、邮编、身份证号码用空格分开!!)
|
||||
1. 陕西省西安市雁塔区丈八沟街道高新四路高新大都荟 马云 13593464918
|
||||
2. 陕西省西安市雁塔区丈八沟街道高新四路高新大都荟710061马云 13593464918
|
||||
2. 陕西省西安市雁塔区丈八沟街道高新四路高新大都荟710061 刘国良 13593464918 211381198512096810
|
||||
3. 北京市朝阳区姚家园3楼 13593464918 马云
|
||||
4. 北京市朝阳区姚家园3楼 150-3569-6956 马云
|
||||
## 不支持的数据格式
|
||||
|
||||
@@ -32,16 +32,16 @@
|
||||
|
||||
<body>
|
||||
<div class="page-header">
|
||||
<h1>地址智能识别 <small>支持省市区街道/姓名/电话/邮编</small>
|
||||
<h1>地址智能识别 <small>支持省市区街道/姓名/电话/邮编/身份证号码</small>
|
||||
<a class="github-button" href="https://github.com/wzc570738205/smartParsePro" data-size="large" data-show-count="true" aria-label="Star wzc570738205/smartParsePro on GitHub">Star</a></h1>
|
||||
<!-- Place this tag where you want the button to render. -->
|
||||
</div>
|
||||
|
||||
<div class="alert alert-danger" role="alert">地址、姓名、电话、邮编用空格分开!!(支持以下数据格式)</div>
|
||||
<div class="alert alert-danger" role="alert">地址、姓名、电话、邮编、身份证号码用空格分开!!(支持以下数据格式)</div>
|
||||
<ol>
|
||||
<li>广东省珠海市香洲区盘山路28号幸福茶庄 陈景勇 13593464918</li>
|
||||
<li>陕西省西安市雁塔区丈八沟街道高新四路高新大都荟 马云 13593464918</li>
|
||||
<li>陕西省西安市雁塔区丈八沟街道高新四路高新大都荟710061 马云 13593464918</li>
|
||||
<li>陕西省西安市雁塔区丈八沟街道高新四路高新大都荟710061 刘国良 13593464918 211381198512096810</li>
|
||||
<li>北京市朝阳区姚家园3楼 13593464918 马云</li>
|
||||
<li>北京市朝阳区姚家园3楼 150-3569-6956 马云</li>
|
||||
<li>河北省石家庄市新华区中华北大街68号鹿城商务中心6号楼1413室 150-3569-6956 马云</li>
|
||||
|
||||
@@ -116,6 +116,12 @@ function smatrAddress(event) {
|
||||
//address= event.replace(/\s/g, ''); //去除空格
|
||||
address = stripscript(address); //过滤特殊字符
|
||||
console.log(address);
|
||||
|
||||
//身份证号匹配
|
||||
if (IdentityCodeValid(address)) {
|
||||
smartObj.idCard = address;
|
||||
address = address.replace(address, '')
|
||||
}
|
||||
|
||||
//电话匹配
|
||||
let phone = address.match(/(86-[1][0-9]{10}) | (86[1][0-9]{10})|([1][0-9]{10})/g);
|
||||
@@ -379,4 +385,79 @@ function stripscript(s) {
|
||||
}
|
||||
rs = rs.replace(/[\r\n]/g, "");
|
||||
return rs;
|
||||
}
|
||||
|
||||
function IdentityCodeValid(code) {
|
||||
let pass;
|
||||
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 tip = '';
|
||||
pass = true;
|
||||
|
||||
if (!code || !/^\d{17}(\d|X)$/i.test(code)) {
|
||||
tip = '身份证号格式错误';
|
||||
pass = false;
|
||||
} else if (!city[code.substr(0, 2)]) {
|
||||
tip = '地址编码错误';
|
||||
pass = false;
|
||||
} else {
|
||||
//18位身份证需要验证最后一位校验位
|
||||
if (code.length == 18) {
|
||||
code = code.split('');
|
||||
//∑(ai×Wi)(mod 11)
|
||||
//加权因子
|
||||
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;
|
||||
var ai = 0;
|
||||
var wi = 0;
|
||||
for (var i = 0; i < 17; i++) {
|
||||
ai = code[i];
|
||||
wi = factor[i];
|
||||
sum += ai * wi;
|
||||
}
|
||||
var last = parity[sum % 11];
|
||||
if (parity[sum % 11] != code[17]) {
|
||||
tip = '校验位错误';
|
||||
pass = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
return pass;
|
||||
}
|
||||
Reference in New Issue
Block a user