繁体   English   中英

我想禁用此日期选择器的键盘输入,该怎么做?

[英]I want to disable keyboard input for this date picker how to do that?

请检查此链接并告诉我应该为此使用哪个道具或事件....

https://codesandbox.io/s/charming-frost-qrvwe?file=/src/App.js

使用inputProps属性。

<TextField
        id="date"
        label="Birthday"
        type="month"
        defaultValue="2017-05"
        className={classes.textField}
        InputLabelProps={{
          shrink: true,
        
        }}
        InputProps={{
          readOnly: true,
         }}
      />

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM