如何不允许用户在带有选择选项的输入字段中输入值

How not to allow the user to enter a value in input field with a selection option

我用的是react-day-picker,(DayPickerInput组件),我想当用户点击相关字段时,当day-picker window打开时,用户将无法输入使用键盘输入一个值,他将可以通过弹出窗口更改该值window。

不知道这是一个属性一个DayPickerInput(我搜索了没找到),还是一个通用的属性字段本身...

好的, 我只需要像这样添加只读:

<DayPickerInput
    readOnly // just it!!
    dayPickerProps={{localeUtils: MomentLocaleUtils, locale:"he"}}
    className={theme.dayPicker}
    placeholder={this.props.hintText}               
    value={value}
    onDayChange={(date: moment.Moment) => this.handleChange(date.toDate())}>                    
</DayPickerInput>  

(