moment 一个月有多少天

月初时间 和 月末时间
let month = moment();
startTime = month.startOf('month');//月初
endTime = month.endOf('month');//月末
查看两天前的当月有多少天
 let month = moment(new Date()).add(-2, 'days');
num = month.endOf('month').format('DD');; console.log(num)

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

展开阅读全文

4 评论

留下您的评论.