如何计算JavaScript中的日期差? [英] How to calculate date difference in JavaScript?

查看:100
本文介绍了如何计算JavaScript中的日期差?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想以天,小时,分钟,秒,毫秒,纳秒为单位计算日期差。我该怎么办?

I want to calculate date difference in days, hours, minutes, seconds, milliseconds, nanoseconds. How can I do it?

推荐答案

假设您有两个 Date 对象 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中的日期差?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆