在线文档教程

date.setUTCMinutes

date.setUTCMinutes

setUTCMinutes()方法会根据世界协调时(UTC)来设置指定日期的分钟数。

语法

dateObj.setUTCMinutes(minutesValue[, secondsValue[, msValue]])

参数

minutesValue必填,表示要设置的分钟数,是一个介于0和59之间的整数。

返回值

返回从UTC时间1970年1月1日0时0分0秒至设置后的时间的毫秒数。

描述

如果你没有传入后两个参数(minutesValuemsValue),这两个参数会分别使用getUTCSeconds()getUTCMilliseconds()这两个方法返回的值。

如果你传入的参数值在上文所述范围之外的话,setUTCMinutes()方法会尝试修改日期对象中的其他信息,比如说你为secondsValue这个参数传入了100(译者注:规定范围是[0, 59]),那么第一个参数(minutesValue)就会被加1,而秒数则变成了40。

例子

Using setUTCMinutes()

var theBigDay = new Date( theBigDay.setUTCMinutes(43

规格

SpecificationStatusComment
ECMAScript 1st Edition (ECMA-262)StandardInitial definition. Implemented in JavaScript 1.3.
ECMAScript 5.1 (ECMA-262)The definition of 'Date.prototype.setUTCMinutes' in that specification.Standard
ECMAScript 2015 (6th Edition, ECMA-262)The definition of 'Date.prototype.setUTCMinutes' in that specification.Standard
ECMAScript Latest Draft (ECMA-262)The definition of 'Date.prototype.setUTCMinutes' 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)