Hiii朋友我正在使用DateTimePicker模块来显示日历。如何禁用 在今天的日期之前的几天?
<DateTimePicker
ref="from"
calendarOnly={this.state.calendarOnly}
onChange={this.handleChange}
dateFormat="YYYY-MM-DD"
placeholder="From Date"
value={this.state.date}
id="change_handler_example"
showClearButton={this.state.showClearButton}
showTodayButton={this.state.showTodayButton}
/>
I tried Using
const today = new Date();
<DateTimePicker minDate={today}/> //it didnt worked
答案 0 :(得分:0)
minDate应该是一个时刻的对象。
minDate={moment().toDate()}
我很确定它可以在不调用toDate()的情况下工作。
答案 1 :(得分:0)
**如何在 reactjs 中禁用日历上一个日期**
{{ disabledDays: {before: new Date()} }}
试试这个它有效。