参见英文答案 > Check time difference in Javascript 14个
我需要比较两个不同的日期时间字符串(形成:YYYY-MM-DD’T’HH:mm).
以下是日期时间字符串:
var a = ("2017-05-02T10:45");
var b = ("2017-05-02T12:15");
我把日期切成了它们所以我只需要时间(形成:HH:mm).
var now = a.slice(11, 16);
var then = b.slice(11, 16);
// now = 10:45
// then = 12:15
我有什么方法可以解决这两次之间的差异吗?
结果应如下所示:
1 hour 30 minutes
此外,如果日期不同,是否有任何简单的解决方案来获得日期差异?
解决方法:
这应该让你开始:
d1 = new Date(Date.parse("2017-05-02T10:45"));
d2 = new Date(Date.parse("2017-05-02T12:15"));
var getDuration = function(d1, d2) {
d3 = new Date(d2 - d1);
d0 = new Date(0);
return {
getHours: function(){
return d3.getHours() - d0.getHours();
},
getMinutes: function(){
return d3.getMinutes() - d0.getMinutes();
},
getMilliseconds: function() {
return d3.getMilliseconds() - d0.getMilliseconds();
},
toString: function(){
return this.getHours() + ":" +
this.getMinutes() + ":" +
this.getMilliseconds();
},
};
}
diff = getDuration(d1, d2);
console.log(diff.toString());
或使用momentjs因为,1.它经过了充分测试,并且可以跟踪错误. 2.从头开始编码是一种有趣的学习体验,但如果你在公司环境中,从头开始编码会浪费时间(因而也就是金钱).