JS 获取某月的天数
function getMonthCountDay (year, month) {
return 32 - new Date(year, month-1, 32).getDate()
}
获取某月的天数,是周几
new Date(2020,11-1,16).getDay() // 11月16日,周一
JS 获取某月的天数
function getMonthCountDay (year, month) {
return 32 - new Date(year, month-1, 32).getDate()
}
获取某月的天数,是周几
new Date(2020,11-1,16).getDay() // 11月16日,周一