day.js获取当月的第一天和最后一天 0 By 董德多 on 2022年11月15日 Javascript类库 //获取当月第一天的dayjs对象 dayjs().startOf('month') //获取当月第一天的格式化字符串 dayjs().startOf('month').format('YYYY-MM-DD'); //获取当月最后一天的dayjs对象 dayjs().endOf('month') //获取当月最后一天的格式化字符串 dayjs().endOf('month').format('YYYY-MM-DD');引申阅读:day.js中的startOf和endOf函数 day.js dayjs endOf startOf