JavaScript Date getMonth()方法
时间:2019-08-20 13:50:51 来源:igfitidea点击:
说明
Javascript date getMonth()方法根据本地时间返回指定日期的月份。
getMonth()返回的值是0到11之间的整数。0对应于一月,1对应于二月,依此类推。
语法
Date.getMonth()
返回值
根据本地时间返回指定日期中的月份。
示例
var date = new Date(2017, 9, 21, 16, 29, 00); console.log(date.getMonth()); // 9 console.log(new Date().getMonth()); // 获取当前的月份