我想强调从当前日期开始的接下来的两周。我正在使用react-datepicker模块。我使用了以下代码:
var currentDate = new Date();
var numberOfDaysToAdd = 13;
const daysHighlighted = new Array(numberOfDaysToAdd).fill(currentDate);
return (
<DatePicker
selected={this.state.startDate}
onChange={this.handleChange}
highlightDates={[{
"react-datepicker__day--highlighted": daysHighlighted.map((day, index) => {
day.setDate(day.getDate() + index)
return new Date(day)
})
}]}
/>
)
这给了我意想不到的结果。
我只想强调下两周,包括当前日期。