ES6 - setMonth() 方法



JavaScript 的 `setMonth()` 方法根据本地时间设置指定日期的月份。

语法

Date.setMonth(monthValue[, dayValue])       

参数

  • monthValue − 一个介于 0 和 11 之间的整数(代表 1 月到 12 月)。

  • dayValue − 一个介于 1 和 31 之间的整数,代表月份中的某一天。

  • msValue − 一个介于 0 和 999 之间的数字,代表毫秒。如果您指定了 `msValue` 参数,则也必须指定 `minutesValue` 和 `secondsValue`。

如果您没有指定 `dayValue` 参数,则使用 `getDate` 方法返回的值。如果您指定的参数超出了预期范围,`setMonth` 会尝试相应地更新 Date 对象中的日期信息。例如,如果您将 `monthValue` 使用 15,年份将加 1(年份 + 1),月份将使用 3。

示例

var dt = new Date( "Aug 28, 2008 23:30:00" ); 
dt.setMonth( 2 ); 
console.log( dt );      

输出

Fri Mar 28 2008 23:30:00 GMT+0530 (India Standard Time)      
广告