date.setUTCFullYear
date.setUTCFullYear
setUTCFullYear()
方法根据世界标准时间为一个具体日期设置年份。
语法
dateObj.setUTCFullYear(yearValue[, monthValue[, dayValue]])
参数
yearValue
指定年份整数值,例如,1995
返回值
UTC 1970年1月1日00:00:00与更新的日期之间的毫秒数。
描述
如果你没有指定具体的monthValue和dayValue,
将会使用 getUTCMonth
和getUTCDate
方法的返回值。
如果你指定的参数超出了期待范围,setUTCFullYear()
方法将会根据Date对象,更新其他参数和日期信息。例如,如果你将monthValue设定为15,年份会增加1,月份值则为为3。
例子
Using setUTCFullYear()
var theBigDay = new Date(
theBigDay.setUTCFullYear(1997
规格
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.setUTCFullYear' in that specification. | Standard | |
ECMAScript 2015 (6th Edition, ECMA-262)The definition of 'Date.prototype.setUTCFullYear' in that specification. | Standard | |
ECMAScript Latest Draft (ECMA-262)The definition of 'Date.prototype.setUTCFullYear' 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) |