JavaScript Date getMonth() 方法
定义和用法
getMonth() 方法根据本地时间返回指定日期的月份(从 0 到 11)。
注释:一月为 0,二月为 1,依此类推。
浏览器支持
方法 | Chrome | IE | Firefox | Safari | Opera |
---|---|---|---|---|---|
getMonth() | 支持 | 支持 | 支持 | 支持 | 支持 |
语法
Date.getMonth()
参数
无参数。
技术细节
返回值: | 数值,从 0 到 11,表示月份。 |
---|---|
JavaScript 版本: | ECMAScript 1 |
更多实例
返回月份的名称(不仅是数字):
var d = new Date(); var month = new Array(); month[0] = "January"; month[1] = "February"; month[2] = "March"; month[3] = "April"; month[4] = "May"; month[5] = "June"; month[6] = "July"; month[7] = "August"; month[8] = "September"; month[9] = "October"; month[10] = "November"; month[11] = "December"; var n = month[d.getMonth()];