getMonth()


Javascript date getMonth()方法根据本地时间返回指定日期的月份。getMonth返回的值是0到11之间的整数.0对应于1月,1到2月,依此类推。

语法

Date.getMonth ()

返回值

根据本地时间返回指定日期的月份。

var dt = new Date("December 25, 1995 23:15:00");  
console.log("getMinutes() : " + dt.getMinutes() );

输出

getMonth() : 15