mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-30 06:09:34 +08:00
ecb2eb6ede
* init * first demo * support empty * add loading support * add form sample * update form sample * omit value & defaultValue * add 2 rest demo * placement support * update docs * fix test * update docs * add test case * fix lint * follow textarea style * update docs style
46 lines
884 B
Markdown
46 lines
884 B
Markdown
---
|
|
order: 4
|
|
title:
|
|
zh-CN: 无效或只读
|
|
en-US: disabled or readOnly
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
通过 `disabled` 属性设置是否生效。通过 `readOnly` 属性设置是否只读。
|
|
|
|
## en-US
|
|
|
|
Configurate `disabled` and `readOnly`.
|
|
|
|
```jsx
|
|
import { Mentions } from 'antd';
|
|
|
|
const { Option } = Mentions;
|
|
|
|
function getOptions() {
|
|
return ['afc163', 'zombiej', 'yesmeck'].map(value => (
|
|
<Option key={value} value={value}>
|
|
{value}
|
|
</Option>
|
|
));
|
|
}
|
|
|
|
function App() {
|
|
return (
|
|
<div>
|
|
<div style={{ marginBottom: 10 }}>
|
|
<Mentions style={{ width: '100%' }} placeholder="this is disabled Mentions" disabled>
|
|
{getOptions()}
|
|
</Mentions>
|
|
</div>
|
|
<Mentions style={{ width: '100%' }} placeholder="this is readOnly Mentions" readOnly>
|
|
{getOptions()}
|
|
</Mentions>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
ReactDOM.render(<App />, mountNode);
|
|
```
|