获取一个月份有多少天

new Date(year, month, 0).getDate()

通过 Date 构造函数传入年份、月份、零,然后通过调用获取日期函数即可获取当前月份有多少天

new Date(2019, 2, 0).getDate()
// 28
new Date(2019, 3, 0).getDate()
// 31

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

展开阅读全文

4 评论

留下您的评论.