js封装一个函数:浏览器接收一个年份和月份,判断这个月份的天数
时间: 2024-05-29 17:09:38 浏览: 79
js获取年月日和当月的天数
function getDaysInMonth(year, month) {
return new Date(year, month, 0).getDate();
}
// 调用示例
console.log(getDaysInMonth(2021, 2)); // 28 (2021年2月份的天数)
阅读全文
js获取年月日和当月的天数