vue根据身份证获取年龄/生日/性别,根据年龄获取生日,根据生日获取年龄

首先根据身份证获取年龄/生日/性别

 handleBlur(data) {
      let idCard = data.target.value;
      let sex = null;
      let birth = null;
      let myDate = new Date();
      let month = myDate.getMonth() + 1;
      let day = myDate.getDate();
      let age = 0;

      if (idCard.length === 18) {
        age = myDate.getFullYear() - idCard.substring(6, 10) - 1;
        sex = idCard.substring(16, 17);
        birth =
          idCard.substring(6, 10) +
          "-" +
          idCard.substring(10, 12) +
          "-" +
          idCard.substring(12, 14);
        if (
          idCard.substring(10, 12) < month ||
          (idCard.substring(10, 12) === month && idCard.substring(12, 14) <= day)
        ) {
          age++;
        }
      } else if (idCard.length === 15) {
        age = myDate.getFullYear() - idCard.substring(6, 8) - 1901;
        sex = idCard.substring(13, 14);
        birth =
          "19" +
          idCard.substring(6, 8) +
          "-" +
          idCard.substring(8, 10) +
          "-" +
          idCard.substring(10, 12);
        if (
          idCard.substring(8, 10) < month ||
          (idCard.substring(8, 10) === month && idCard.substring(10, 12) <= day)
        )
          age++;
      }

      if (sex % 2 === 0) {
        sex = 2;
      } else {
        sex = 1;
      }

      this.formData.customerAge = age;
      this.formData.gender = sex;
      this.formData.birthday = birth;
    },

根据年龄获取生日,年份根据年龄算,月日取当天日期

function calculateBirthdate(age) {
  // 获取当前日期
  const currentDate = new Date();

  // 获取当前年份
  const currentYear = currentDate.getFullYear();

  // 计算出生年份
  const birthYear = currentYear - age;

  // 获取当前月份和日期
  const currentMonth = currentDate.getMonth() + 1; // 月份是从0开始的,所以要加1
  const currentDay = currentDate.getDate();

  // 构建出生日期的字符串
  const birthdate = `${birthYear}-${currentMonth}-${currentDay}`;

  return birthdate;
}

// 示例用法
const age = 25; // 用你实际的年龄替换
const birthdate = calculateBirthdate(age);
console.log(birthdate);

根据生日获取年龄

function calculateAge(birthdate) {
  // 将出生日期字符串转换为日期对象
  const birthDateObj = new Date(birthdate);

  // 获取当前日期
  const currentDate = new Date();

  // 计算年龄
  let age = currentDate.getFullYear() - birthDateObj.getFullYear();

  // 考虑生日还未到的情况
  const currentMonth = currentDate.getMonth() + 1; // 月份是从0开始的,所以要加1
  const birthMonth = birthDateObj.getMonth() + 1;

  if (currentMonth < birthMonth || (currentMonth === birthMonth && currentDate.getDate() < birthDateObj.getDate())) {
    age--;
  }

  return age;
}

// 示例用法
const birthdate = '1990-05-15'; // 用实际的出生日期替换
const age = calculateAge(birthdate);
console.log(age);
相关推荐
小王爱吃月亮糖9 分钟前
QT开发【常用控件1】-Layouts & Spacers
开发语言·前端·c++·qt·visual studio
feifeiyechuan9 分钟前
【Chrome Extension】二、导航栏快速查询
前端·chrome·chromeextension
索然无味io16 分钟前
跨站请求伪造之基本介绍
前端·笔记·学习·web安全·网络安全·php
qq_1715388516 分钟前
利用Spring Cloud Gateway Predicate优化微服务路由策略
android·javascript·微服务
字节程序员26 分钟前
四种自动化测试模型实例及优缺点详解
开发语言·javascript·ecmascript·集成测试·压力测试
m0_7482565628 分钟前
Windows 11 Web 项目常见问题解决方案
前端·windows
LOVE️YOU29 分钟前
HTML&CSS&JavaScript&DOM 之间的关系?
前端·javascript·css·html
胡西风_foxww30 分钟前
【es6复习笔记】集合Set(13)
前端·笔记·es6·set·集合
m0_7482449639 分钟前
VUE前端实现天爱滑块验证码--详细教程
前端·javascript·vue.js
叫我菜菜就好1 小时前
【Flutter_Web】Flutter编译Web第三篇(网络请求篇):dio如何改造方法,变成web之后数据如何处理
前端·网络·flutter