// 记住变量用const定义,常量用let定义,不然类型会报错
const onCompute = () => {
let identityNo = '511622200001011489'; // 身份证号码
let sex = '';
// 计算性别
if (identityNo.substr(16, 1) % 2 === 1) {
sex = '男';
} else {
sex = '女';
}
const birthYear = identityNo.substring(6, 10);
const monthBirth = identityNo.substring(10, 12);
const birthDay = identityNo.substring(12, 14);
// 获取当前年月日
const myDate = new Date();
const nowMonth = myDate.getMonth() + 1;
const nowDay = myDate.getDay();
// 计算年龄
let age = myDate.getFullYear() - birthYear ;
if (nowMonth < monthBirth || (nowMonth === monthBirth && nowDay < birthDay )) {
age -= 1;
}
console.log('性别------>',sex);
console.log('年龄------>',age);
};
(TS)根据身份证号码计算性别和年龄
微信公众号

手机浏览(小程序)
Warning: get_headers(): SSL operation failed with code 1. OpenSSL Error messages: error:14090086:SSL routines:ssl3_get_server_certificate:certificate verify failed in /mydata/web/wwwshanhubei/web/wp-content/themes/shanhuke/single.php on line 57
Warning: get_headers(): Failed to enable crypto in /mydata/web/wwwshanhubei/web/wp-content/themes/shanhuke/single.php on line 57
Warning: get_headers(https://static.shanhubei.com/qrcode/qrcode_viewid_56560.jpg): failed to open stream: operation failed in /mydata/web/wwwshanhubei/web/wp-content/themes/shanhuke/single.php on line 57
