Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想tabIndex在 MUI 的自动完成中使用,inputProps={{ tabIndex: tabIndex ?? -1 }}但是当我使用这个属性时,然后单击下拉按钮页面消失,任何机构都可以帮助我有什么问题吗?
tabIndex
inputProps={{ tabIndex: tabIndex ?? -1 }}
您还需要传播params.inputProps来自Autocomplete:
params.inputProps
Autocomplete
<TextField {...params} inputProps={{ ...params.inputProps, tabIndex: 1 }} label="freeSolo" />