如何用JavaScript从身份证号中准确计算出年龄?

2026-04-02 09:091阅读0评论SEO问题
  • 内容介绍
  • 文章标签
  • 相关推荐

本文共计394个文字,预计阅读时间需要2分钟。

如何用JavaScript从身份证号中准确计算出年龄?

pythondef check_id_card(id_card): if len(id_card) !=18: return 身份证号码长度错误

birth_year=id_card[6:10] birth_month=id_card[10:12] birth_day=id_card[12:14]

if not (birth_year.isdigit() and birth_month.isdigit() and birth_day.isdigit()): return 出生年月日格式错误

if int(birth_year) 2023: return 出生年份不在合理范围内

如何用JavaScript从身份证号中准确计算出年龄?

if int(birth_month) 12: return 出生月份不在合理范围内

if int(birth_day) 31: return 出生日期不在合理范围内

return 身份证号码格式正确

测试print(check_id_card(123456199001011234))

/** 根据身份证号码判断性别 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 获取身份证年龄的资料请关注易盾网络其它相关文章!

本文共计394个文字,预计阅读时间需要2分钟。

如何用JavaScript从身份证号中准确计算出年龄?

pythondef check_id_card(id_card): if len(id_card) !=18: return 身份证号码长度错误

birth_year=id_card[6:10] birth_month=id_card[10:12] birth_day=id_card[12:14]

if not (birth_year.isdigit() and birth_month.isdigit() and birth_day.isdigit()): return 出生年月日格式错误

if int(birth_year) 2023: return 出生年份不在合理范围内

如何用JavaScript从身份证号中准确计算出年龄?

if int(birth_month) 12: return 出生月份不在合理范围内

if int(birth_day) 31: return 出生日期不在合理范围内

return 身份证号码格式正确

测试print(check_id_card(123456199001011234))

/** 根据身份证号码判断性别 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 获取身份证年龄的资料请关注易盾网络其它相关文章!