下面有更多 "亲自试一试" 示例。
setUTCHours() 方法根据 UTC 设置日期对象的小时。
它还可用于设置分、秒和毫秒。
UTC(通用协调时间)是世界时间标准设定的时间。
UTC 时间与 GMT 时间(格林威治标准时间)相同。
setUTCHours()
是 ECMAScript1 (ES1) 功能。
所有浏览器均完全支持 ES1 (JavaScript 1997):
Chrome | Edge | Firefox | Safari | Opera | IE |
Yes | Yes | Yes | Yes | Yes | Yes |
Date.setUTCHours(
hour,
min,
sec,
millisec)
Parameter | Description |
---|---|
hour | Required. An integer representing the hour. Expected values are 0-23, but other values are allowed:
|
min | Optional. An integer representing the minutes. Expected values are 0-59, but other values are allowed:
|
sec | Optional. An integer representing the seconds Expected values are 0-59, but other values are allowed:
|
millisec | Optional. An integer representing the milliseconds Expected values are 0-999, but other values are allowed:
|
返回值: | 一个数字,表示日期对象与 1970 年 1 月 1 日午夜之间的毫秒数 |
---|---|
JavaScript 版本: | ECMA脚本1 |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!