服务器之家

服务器之家 > 正文

使用js获取身份证年龄的示例代码

时间:2021-12-09 15:23     来源/作者:china丶MRH
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/**
根据身份证号码判断性别
15位身份证号码:第7、8位为出生年份(两位数),第9、10位为出生月份,第11、12位代表出生日
18位身份证号码:第7、8、9、10位为出生年份(四位数),第11、第12位为出生月份,
第13、14位代表出生日期,第17位代表性别,奇数为男,偶数为女。
*/
//根据身份证号获取年龄
GetAge(identityCard) {
 let len = (identityCard + "").length;
 let strBirthday = "";
 if (len == 18) {
 //处理18位的身份证号码从号码中得到生日和性别代码
 strBirthday =
  identityCard.substr(6, 4) +
  "/" +
  identityCard.substr(10, 2) +
  "/" +
  identityCard.substr(12, 2);
 }
 if (len == 15) {
 let birthdayValue = "";
 birthdayValue = identityCard.charAt(6) + identityCard.charAt(7);
 if (parseInt(birthdayValue) < 10) {
  strBirthday =
  "20" +
  identityCard.substr(6, 2) +
  "/" +
  identityCard.substr(8, 2) +
  "/" +
  identityCard.substr(10, 2);
 } else {
  strBirthday =
  "19" +
  identityCard.substr(6, 2) +
  "/" +
  identityCard.substr(8, 2) +
  "/" +
  identityCard.substr(10, 2);
 }
 }
 //时间字符串里,必须是“/”
 let birthDate = new Date(strBirthday);
 let nowDateTime = new Date();
 let age = nowDateTime.getFullYear() - birthDate.getFullYear();
 //再考虑月、天的因素;.getMonth()获取的是从0开始的,这里进行比较,不需要加1
 if (
 nowDateTime.getMonth() < birthDate.getMonth() ||
 (nowDateTime.getMonth() == birthDate.getMonth() &&
  nowDateTime.getDate() < birthDate.getDate())
 ) {
 age--;
 }
 return age;
}

以上就是使用js获取身份证年龄的示例代码的详细内容,更多关于js 获取身份证年龄的资料请关注服务器之家其它相关文章!

原文链接:https://www.cnblogs.com/maruihua/p/12510275.html

标签:

相关文章

热门资讯

yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
2021年耽改剧名单 2021要播出的59部耽改剧列表
2021年耽改剧名单 2021要播出的59部耽改剧列表 2021-03-05
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总 2020-11-13
返回顶部