--- title: Date.prototype.getFullYear() slug: Web/JavaScript/Reference/Global_Objects/Date/getFullYear tags: - Date - JavaScript - Method - Prototype - Reference translation_of: Web/JavaScript/Reference/Global_Objects/Date/getFullYear ---
{{JSRef}}
getFullYear()
方法根据本地时间返回指定日期的年份。
此方法替代 {{jsxref("Date.prototype.getYear()", "getYear()")}} 。
dateObj.getFullYear()
根据当地时间,返回一个对应于给定日期的年份数字。
getFullYear()
返回的值是绝对数。 对于1000到9999之间的日期,getFullYear()
返回一个四位数字,如1995。使用此函数确保在2000年后兼容。
getFullYear()
下面的例子将当前年份的四位数值分配给变量year
。
var today = new Date(); var year = today.getFullYear();
Specification | Status | Comment |
---|---|---|
{{SpecName('ES1')}} | {{Spec2('ES1')}} | Initial definition. Implemented in JavaScript 1.3. |
{{SpecName('ES5.1', '#sec-15.9.5.10', 'Date.prototype.getFullYear')}} | {{Spec2('ES5.1')}} | |
{{SpecName('ES6', '#sec-date.prototype.getfullyear', 'Date.prototype.getFullYear')}} | {{Spec2('ES6')}} | |
{{SpecName('ESDraft', '#sec-date.prototype.getfullyear', 'Date.prototype.getFullYear')}} | {{Spec2('ESDraft')}} |
{{Compat("javascript.builtins.Date.getFullYear")}}