js 获取一个月有多少天的方式

方法一:new Date()第3个参数默认为1,就是每个月的1号,把它设置为0时, new Date()会返回上一个月的最后一天,然后通过getDate()方法得到天数

function getMonthDay(year, month) {let days = new Date(year, month + 1, 0).getDate()return days
}

方法二:可以把每月的天数写在数组中,再判断时闰年还是平年确定2月分的天数

function getDays(year, month) {let days = [31,28,31,30,31,30,31,31,30,31,30,31] if ( (year % 4 ===0) && (year % 100 !==0 || year % 400 ===0) ) {days[1] = 29}return days[month]  
}

本文链接:https://my.lmcjl.com/post/4564.html

展开阅读全文

4 评论

留下您的评论.