请检查这个链接,并告诉我,哪些 prop 或事件,我应该使用这个。...https://codesandbox.io/s/charming-frost-qrvwe?file=/src/App.js
elcex8rz1#
使用inputProps属性。
inputProps
<TextField id="date" label="Birthday" type="month" defaultValue="2017-05" className={classes.textField} InputLabelProps={{ shrink: true, }} InputProps={{ readOnly: true, }} />
qc6wkl3g2#
我也有同样的问题。通过自定义输入按钮来修复它。
() => { const [startDate, setStartDate] = useState(new Date()); const ExampleCustomInput = forwardRef(({ value, onClick }, ref) => ( <button className="example-custom-input" onClick={onClick} ref={ref}> {value} </button> )); return ( <DatePicker selected={startDate} onChange={(date) => setStartDate(date)} customInput={<ExampleCustomInput />} /> ); };
www.example. com example“自定义输入”
2条答案
按热度按时间elcex8rz1#
使用
inputProps
属性。qc6wkl3g2#
我也有同样的问题。通过自定义输入按钮来修复它。
www.example. com example“自定义输入”