JavaScript 中的日期差异计算
确定两个日期之间的差异是 JavaScript 中的一项常见任务。通过利用 Date 对象及其毫秒值,可以计算出此差异。
<code class="javascript">var a = new Date(); // Current date var b = new Date(2010, 0, 1, 0, 0, 0, 0); // Start of 2010 var d = b - a; // Difference in milliseconds</code>
要获取秒数,请将毫秒除以 1000,然后转换为整数:
<code class="javascript">var seconds = parseInt((b - a) / 1000);</code>
对于较长的时间单位,继续除以适当的因子并转换为整数:
<code class="javascript">var minutes = parseInt(seconds / 60); var hours = parseInt(minutes / 60);</code>
或者,创建一个函数来计算时间单位的最大总量和余数:
<code class="javascript">function get_whole_values(base_value, time_fractions) { time_data = [base_value]; for (i = 0; i < time_fractions.length; i++) { time_data.push(parseInt(time_data[i] / time_fractions[i])); time_data[i] = time_data[i] % time_fractions[i]; } return time_data; }
示例:
<code class="javascript">console.log(get_whole_values(72000, [1000, 60])); // Output: [0, 12, 1] (0 milliseconds, 12 seconds, 1 minute)
注意,为 Date 对象提供输入参数时,只需指定必要的值:
<code class="javascript">new Date(<year>, <month>, <day>, <hours>, <minutes>, <seconds>, <milliseconds>);</code>
以上是如何在 JavaScript 中计算日期差异?的详细内容。更多信息请关注PHP中文网其他相关文章!