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与更新的日期之间的毫秒数。

描述

如果不指定minutesValuesecondsValuemsValue参数的值,将从getUTCMinutes()getUTCSeconds()getUTCMilliseconds()使用方法返回。

如果您指定的参数超出了预期范围,则setUTCHours()尝试相应地更新Date对象中的日期信息。例如,如果使用100作为secondsValue分钟,分钟将增加1(minutesValue + 1),并且将秒设为40。

例子

Using setUTCHours()

var theBigDay = new Date( theBigDay.setUTCHours(8

规格

SpecificationStatusComment
ECMAScript 1st Edition (ECMA-262)StandardInitial 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

浏览器兼容性

FeatureChromeFirefoxEdgeInternet ExplorerOperaSafari
Basic Support(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)

FeatureAndroidChrome for AndroidEdge mobileFirefox for AndroidIE mobileOpera AndroidiOS Safari
Basic Support(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)