跟据年月 查询传入年月的天数

function getMonthDays(year,month){

var thisDate = new Date(year,month,0); //当天数为0 js自动处理为上一月的最后一天

return thisDate.getDate();

}

传入年月 return出去的值 记得接收一下

你可能感兴趣的:(1024程序员节)