以下是如何使用dayjs在JavaScript中设置选择起始时间为当月第一天,结束时间为当月最后一天的代码示例:document.getElementById('S1').value = dayjs().startOf('month').format('YYYY-MM-DD'); // 2022-08-01 document.getElementById('E1').value = dayjs().endOf('month').format('YYYY-MM-DD'); // '2022-08-31'