使用.change JavaScript计算不包括周末的两个日期之间,可以通过以下步骤实现:
function getDates(startDate, endDate) {
var dates = [];
var currentDate = new Date(startDate);
endDate = new Date(endDate);
while (currentDate <= endDate) {
dates.push(new Date(currentDate));
currentDate.setDate(currentDate.getDate() + 1);
}
return dates;
}
var startDate = new Date("2022-01-01");
var endDate = new Date("2022-01-10");
var dates = getDates(startDate, endDate);
function filterWeekendDates(dates) {
return dates.filter(function(date) {
return date.getDay() !== 0 && date.getDay() !== 6;
});
}
var filteredDates = filterWeekendDates(dates);
综上所述,使用.change JavaScript可以计算不包括周末的两个日期之间的所有日期。
领取专属 10元无门槛券
手把手带您无忧上云