能否请您告诉我如何使用力矩js计算人员的年龄? 我有两个日期“ DOB”和“当前日期”。我想获取两者之间的差异以获取年龄。
大约15岁,14岁..
这是我的代码 http://plnkr.co/edit/1wIvVISmgEqcRNnAD971?p=preview
cy.add({
data: {
id: 'yourId',
...
faveLineColor: 'yourLineColor',
...
},
...
});
答案 0 :(得分:2)
尝试
moment().diff('09-Feb-1983', 'years');
答案 1 :(得分:1)
找到了这个网站https://www.sitepoint.com/managing-dates-times-using-moment-js/ 在Google搜索的第一个结果上
var dateB = moment('2010-11-11');
var dateC = moment('2014-10-11');
console.log('Difference is ', dateB.diff(dateC), 'milliseconds');
console.log('Difference is ', dateB.diff(dateC, 'days'), 'days');
console.log('Difference is ', dateB.diff(dateC, 'months'), 'months');
console.log('Difference is ', dateB.diff(dateC, 'years'), 'years');