function getMonthLength(date) {
let d = new Date(日期);
// 将日期设置为下月一号
d.setMonth(d.getMonth()+1);
d.setDate('1');
// 获取本月最后一天
d.setDate(d.getDate()-1);
return d.getDate();
}
return getMonthLength(日期)
效果就是选择日期的时候,自动计算该时间的天数。
function getMonthLength(date) {
let d = new Date(日期);
// 将日期设置为下月一号
d.setMonth(d.getMonth()+1);
d.setDate('1');
// 获取本月最后一天
d.setDate(d.getDate()-1);
return d.getDate();
}
return getMonthLength(日期)
效果就是选择日期的时候,自动计算该时间的天数。
大佬~可否多分享点自定义函数?对我们这种不会代码的人实在是太友好啦 🎉️ 👍