扫码一下
查看教程更方便
setMonth()方法根据本地时间设置指定日期的月份。
该方法的语法如下:
Date.setMonth(monthValue[, dayValue])
如果未指定 dayValue 参数,则使用从 getDate 方法返回的值。如果您指定的参数超出预期范围,则 setMonth 会相应地尝试更新 Date 对象中的日期信息。例如,如果您使用 15 作为 monthValue,则年份将增加 1(年 + 1),而 3 将用于月份。
返回1970年一月一日午夜至调整过的日期的毫秒表示。
所有主要浏览器都支持 setMonth() 方法
<html>
<head>
<title>JavaScript setMonth Method</title>
</head>
<body>
<script type = "text/javascript">
var dt = new Date( "Aug 28, 2008 23:30:00" );
dt.setMonth( 2 );
document.write( dt );
</script>
</body>
</html>
输出结果:
Fri Mar 28 2008 23:30:00 GMT+0800 (中国标准时间)