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中文網其他相關文章!