博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
根据出生日计算年龄
阅读量:5244 次
发布时间:2019-06-14

本文共 499 字,大约阅读时间需要 1 分钟。

/* * 根据出生日计算年龄*/function ages(str){    var   r   =   str.match(/^(\d{1,4})(-|\/)(\d{1,2})\2(\d{1,2})$/);         if(r == null) return   false;         var d = new Date(r[1],r[3]-1, r[4]);         if(d.getFullYear()==r[1]&&(d.getMonth()+1)==r[3]&&d.getDate()==r[4]){         	var Y = new Date().getFullYear();         	return((Y-r[1]));       }       return("输入的日期格式错误!");   }   console.log(ages("1993-12-18"));   console.log(ages("2002-01-41"));

  

转载于:https://www.cnblogs.com/rockyan/p/8057602.html

你可能感兴趣的文章
【★】浅谈计算机与随机数
查看>>
Leetcode 226: Invert Binary Tree
查看>>
C# Dynamic通用反序列化Json类型并遍历属性比较
查看>>
前台freemark获取后台的值
查看>>
Leetcode: Unique Binary Search Trees II
查看>>
C++ FFLIB 之FFDB: 使用 Mysql&Sqlite 实现CRUD
查看>>
Spring-hibernate整合
查看>>
c++ map
查看>>
exit和return的区别
查看>>
Django 相关
查看>>
git init
查看>>
训练记录
查看>>
IList和DataSet性能差别 转自 http://blog.csdn.net/ilovemsdn/article/details/2954335
查看>>
Hive教程(1)
查看>>
第16周总结
查看>>
C#编程时应注意的性能处理
查看>>
Fragment
查看>>
比较安全的获取站点更目录
查看>>
苹果开发者账号那些事儿(二)
查看>>
使用C#交互快速生成代码!
查看>>