--- title: Date.prototype.getMilliseconds() slug: Web/JavaScript/Reference/Global_Objects/Date/getMilliseconds translation_of: Web/JavaScript/Reference/Global_Objects/Date/getMilliseconds ---
{{JSRef("Global_Objects", "Date")}}
getMilliseconds() 方法,根据本地时间,返回一个指定的日期对象的毫秒数。
dateObj.getMilliseconds()
无
getMilliseconds()
方法返回一个0 到 999的整数。
getMilliseconds
方法下例中,将当前时间的毫秒数赋值给变量 ms
。
var ms;
Today = new Date();
ms = Today.getMilliseconds();
规范版本 | 规范状态 | 注解 |
---|---|---|
ECMAScript 1st Edition. Implemented in JavaScript 1.3 | Standard | Initial definition. |
{{SpecName('ES5.1', '#sec-15.9.5.24', 'Date.prototype.getMilliseconds')}} | {{Spec2('ES5.1')}} | |
{{SpecName('ES6', '#sec-date.prototype.getmilliseconds', 'Date.prototype.getMilliseconds')}} | {{Spec2('ES6')}} |
{{Compat("javascript.builtins.Date.getMilliseconds")}}