setMonth()方法設(shè)置日期對象的月份。
如果您指定的參數(shù)超出預(yù)期范圍(從0到11),則setMonth()嘗試相應(yīng)地更新Date對象中的日期信息。
例如,如果您將15用作month(月份)值,則年份將增加1,而3將用作月份。
此方法還可用于設(shè)置每月的某天。
date.setMonth(month, day)
var d = new Date(); d.setMonth(11);測試看看?/?
如果未指定day參數(shù),則使用從getDate()方法返回的值。
所有瀏覽器都完全支持setMonth()方法:
Method | ![]() | ![]() | ![]() | ![]() | ![]() |
setMonth() | 是 | 是 | 是 | 是 | 是 |
參數(shù) | 描述 |
---|---|
month | (必需)0到11之間的整數(shù),表示從一月到十二月的月份 |
day | (可選)1到31之間的整數(shù),代表一個月中的某天 |
返回值: | 1970年1月1日00:00:00 UTC與更新日期之間的毫秒數(shù) |
---|---|
JavaScript版本: | ECMAScript 1 |
指定16作為月份值:
var d = new Date(); d.setMonth(16);測試看看?/?