1、描述
JavaScript date setFullYear()
方法根据本地时间为指定日期设置年。
2、语法
它的语法如下:
date.setFullYear(yearValue[, monthValue[, dayValue]])
3、参数
- yearValue : 指定年份的数值的整数,例如,2008。
- monthValue :0到11之间的整数,表示从1月到12月的月份。
- DayValue :1到31之间的整数,表示一个月中的哪一天。如果指定
dayValue
参数,还必须指定monthValue
。
如果不指定monthValue
和dayValue
参数,则使用getMonth
和getDate
方法返回的值。
4、使用示例
<html>
<head>
<title>JavaScript setFullYear Method</title>
</head>
<body>
<script type = "text/javascript">
var dt = new Date( "Aug 21, 2012 21:20:10" );
dt.setFullYear( 2000 );
document.write( dt );
</script>
</body>
</html>
5、输出
Mon Aug 21 2000 21:20:10 GMT+0800 (中国标准时间)