本文介绍了如何计算JavaScript中的日期差?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想以天,小时,分钟,秒,毫秒,纳秒为单位计算日期差。我该怎么办?
I want to calculate date difference in days, hours, minutes, seconds, milliseconds, nanoseconds. How can I do it?
推荐答案
假设您有两个 s,您可以将它们减去以获得毫秒级的差异:
Assuming you have two Date
objects, you can just subtract them to get the difference in milliseconds:
var difference = date2 - date1;
从那里,您可以使用简单的算法来得出其他值。
From there, you can use simple arithmetic to derive the other values.
这篇关于如何计算JavaScript中的日期差?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!