date.getFullYear
date.getFullYear
getFullYear()
方法根据本地时间返回指定日期的年份。
使用这个方法代替getYear()
方法。
语法
dateObj.getFullYear()
返回值
根据当地时间,与给定日期的年份对应的数字。
描述
getFullYear()
返回的值是一个绝对数字。在1000年和9999年之间的日期,getFullYear()
返回一个四位数,例如返回 1995。使用这个功能确保一个年份数值能够与2000年之后的年份兼容。
例子
使用 getFullYear()
下面的示例将当前年份的四位数值分配给变量year
.
var today = new Date(
var year = today.getFullYear(
规格
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.getFullYear' in that specification. | Standard | |
ECMAScript 2015 (6th Edition, ECMA-262)The definition of 'Date.prototype.getFullYear' in that specification. | Standard | |
ECMAScript Latest Draft (ECMA-262)The definition of 'Date.prototype.getFullYear' in that specification. | Living Standard | |
浏览器兼容性
Feature | Chrome | Edge | Firefox | 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) |