2 回答
TA贡献1859条经验 获得超6个赞
var date = new Date();
var firstDay = new Date(date.getFullYear(),date.getMonth(), 1);
var lastDay = new Date(date.getFullYear(),date.getMonth(), daysInMonth(date.getMonth()+1,
date.getFullYear()));
firstDay=>Tue Sep 01 2020 00:00:00 GMT+0530 (India Standard Time)
lastDay=> Wed Sep 30 2020 00:00:00 GMT+0530 (India Standard Time)
请注意您想要的时区和日期(可以是任何时间)
TA贡献1943条经验 获得超7个赞
如果 startDate 和 endDate 为空,请使用以下命令查找当月的第一个日期和最后一个日期:
var date = new Date();
var firstDateOfCurrentMonth = new Date(date.getFullYear(), date.getMonth(), 1);
var endDateOfCurrentMonth = new Date(date.getFullYear(), date.getMonth() + 1, 0);
现在您可以将这些日期分配给 startDate 和 endDate
statDate=firstDateOfCurrentMonth;
endDate=endDateOfCurrentMonth;
添加回答
举报