date.setUTCHours
date.setUTCHours
该setUTCHours()
方法根据通用时间设置指定日期的小时数,并返回UTC时间1970年1月1日00:00:00之前的毫秒数,直到更新的Date
实例表示的时间。
语法
dateObj.setUTCHours(hoursValue[, minutesValue[, secondsValue[, msValue]]])
参数
hoursValue
表示小时的整数,取值0到23之间。
返回值
UTC 1970年1月1日00:00:00与更新的日期之间的毫秒数。
描述
如果不指定minutesValue
,secondsValue
和msValue
参数的值,将从getUTCMinutes()
,getUTCSeconds()
和getUTCMilliseconds()
使用方法返回。
如果您指定的参数超出了预期范围,则setUTCHours()
尝试相应地更新Date
对象中的日期信息。例如,如果使用100作为secondsValue
分钟,分钟将增加1(minutesValue + 1
),并且将秒设为40。
例子
Using setUTCHours()
var theBigDay = new Date(
theBigDay.setUTCHours(8
规格
Specification | Status | Comment |
---|---|---|
ECMAScript 1st Edition (ECMA-262) | Standard | Initial definition. Implemented in JavaScript 1.3. |
ECMAScript 5.1 (ECMA-262)The definition of 'Date.prototype.setUTCHours' in that specification. | Standard | |
ECMAScript 2015 (6th Edition, ECMA-262)The definition of 'Date.prototype.setUTCHours' in that specification. | Standard | |
ECMAScript Latest Draft (ECMA-262)The definition of 'Date.prototype.setUTCHours' in that specification. | Draft | |
浏览器兼容性
Feature | Chrome | Firefox | Edge | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|---|
Basic Support | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |
Feature | Android | Chrome for Android | Edge mobile | Firefox for Android | IE mobile | Opera Android | iOS Safari |
---|---|---|---|---|---|---|---|
Basic Support | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |