目录

JavaScript Date setUTCMilliseconds()

示例

根据 UTC 时间,将毫秒设置为 192:

const d = new Date();
d.setUTCMilliseconds(192);
亲自试一试 »

描述

setUTCMilliseconds() 方法根据 UTC 设置日期对象的毫秒数(从 0 到 999)。

笔记

UTC(通用协调时间)是世界时间标准设定的时间。

UTC 时间与 GMT 时间(格林威治标准时间)相同。


浏览器支持

setUTCMilliseconds()是 ECMAScript1 (ES1) 功能。

所有浏览器均完全支持 ES1 (JavaScript 1997):

Chrome Edge Firefox Safari Opera IE
Yes Yes Yes Yes Yes Yes

语法

Date.setUTCMilliseconds( millisec)

参数值

Parameter Description
millisec Required. An integer representing the milliseconds

Expected values are 0-999, but other values are allowed:

  • -1 will result in the last millisecond of the previous second
  • 1000 will result in the first millisecond of the next second
  • 1001 will result in the second millisecond of the next second

技术细节

返回值: 一个数字,表示日期对象与 1970 年 1 月 1 日午夜之间的毫秒数
JavaScript 版本: ECMA脚本1