Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Date.now()

Date.now() 方法回傳自 1970/01/01 00:00:00 UTC 起經過的毫秒數。

格式

var timeInMs = Date.now();

回傳值

一個代表由經 UNIX 紀元起經過的毫秒數值(Number)。

描述

由於 now()Date 的靜態方法,你只能用 Date.now() 的方式呼叫它。

補完

這個函數是 ECMA-262 第 5 版的標準。 對於未更新支援此方法的引擎,可以利用底下的程式補上:

if (!Date.now) {
  Date.now = function now() {
    return new Date().getTime();
  };
}

規範

規範 狀態
ECMAScript 5.1 (ECMA-262)
The definition of 'Date.now' in that specification.
Standard 初始定義,實作在 JavaScript 1.5 。
ECMAScript 2015 (6th Edition, ECMA-262)
The definition of 'Date.now' in that specification.
Standard  
ECMAScript 2017 Draft (ECMA-262)
The definition of 'Date.now' in that specification.
Draft  

瀏覽器相容性

平台 Chrome Firefox (Gecko) Internet Explorer Opera Safari
基本支援 5 3.0 (1.9) 9 10.50 4
平台 Android Chrome for Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
基本支援 (Yes) (Yes) (Yes) (Yes) (Yes) (Yes)

相關資源

文件標籤與貢獻者

 此頁面的貢獻者: ddtet
 最近更新: ddtet,