date.setUTCMonth
date.setUTCMonth
该setUTCMonth()
方法根据世界时间设置指定日期的月份。
语法
dateObj.setUTCMonth(monthValue[, dayValue])
参数
monthValue
一个0-11的整数,代表1月到12月。
返回值
这个数值是从1970年1月1号 00:00:00到当前时间的毫秒数(国际通用时间)
描述
如果你没有明确书写dayValue
这个参数,那么就会从getUTCDate()
方法返回对应的数值.
如果你写了一个超过在规定的范围内的参数. setUTCMonth()就会试图相应的更新时间信息在Data对象中。例如,如果你用15作为
monthValue的值,那么年份就会加1,并且月份会变成3.(15=12+3)
例子
Using setUTCMonth()
var theBigDay = new Date(
theBigDay.setUTCMonth(11
规格
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.setUTCMonth' in that specification. | Standard | |
ECMAScript 2015 (6th Edition, ECMA-262)The definition of 'Date.prototype.setUTCMonth' in that specification. | Standard | |
ECMAScript Latest Draft (ECMA-262)The definition of 'Date.prototype.setUTCMonth' 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) |