2016-03-31 09:40:55 +08:00
|
|
|
---
|
|
|
|
order: 3
|
2016-04-22 14:52:19 +08:00
|
|
|
title:
|
|
|
|
zh-CN: 不可用状态
|
|
|
|
en-US: Disabled
|
2016-03-31 09:40:55 +08:00
|
|
|
---
|
2015-06-05 20:26:41 +08:00
|
|
|
|
2016-04-22 14:52:19 +08:00
|
|
|
## zh-CN
|
|
|
|
|
2015-10-30 17:00:06 +08:00
|
|
|
添加 `disabled` 属性即可让按钮处于不可用状态,同时按钮样式也会改变。
|
2015-06-05 20:26:41 +08:00
|
|
|
|
2016-04-22 14:52:19 +08:00
|
|
|
## en-US
|
|
|
|
|
2016-04-25 11:04:56 +08:00
|
|
|
To mark a button as disabled, add the `disabled` property to the `Button`.
|
2016-04-22 14:52:19 +08:00
|
|
|
|
2019-05-07 14:57:32 +08:00
|
|
|
```jsx
|
2015-10-28 20:55:49 +08:00
|
|
|
import { Button } from 'antd';
|
2015-09-27 16:30:35 +08:00
|
|
|
|
2016-04-22 14:52:19 +08:00
|
|
|
ReactDOM.render(
|
|
|
|
<div>
|
|
|
|
<Button type="primary">Primary</Button>
|
2019-05-07 14:57:32 +08:00
|
|
|
<Button type="primary" disabled>
|
|
|
|
Primary(disabled)
|
|
|
|
</Button>
|
2016-04-22 14:52:19 +08:00
|
|
|
<br />
|
|
|
|
<Button>Default</Button>
|
|
|
|
<Button disabled>Default(disabled)</Button>
|
|
|
|
<br />
|
|
|
|
<Button type="dashed">Dashed</Button>
|
2019-05-07 14:57:32 +08:00
|
|
|
<Button type="dashed" disabled>
|
|
|
|
Dashed(disabled)
|
|
|
|
</Button>
|
2019-05-06 12:04:39 +08:00
|
|
|
<br />
|
|
|
|
<Button type="link">Link</Button>
|
2019-05-07 14:57:32 +08:00
|
|
|
<Button type="link" disabled>
|
|
|
|
Link(disabled)
|
|
|
|
</Button>
|
2018-05-17 21:23:36 +08:00
|
|
|
<div style={{ padding: '8px 8px 0 8px', background: 'rgb(190, 200, 200)' }}>
|
|
|
|
<Button ghost>Ghost</Button>
|
2019-05-07 14:57:32 +08:00
|
|
|
<Button ghost disabled>
|
|
|
|
Ghost(disabled)
|
|
|
|
</Button>
|
2018-05-17 21:23:36 +08:00
|
|
|
</div>
|
2016-04-22 14:52:19 +08:00
|
|
|
</div>,
|
2019-05-07 14:57:32 +08:00
|
|
|
mountNode,
|
2016-04-22 14:52:19 +08:00
|
|
|
);
|
2019-05-07 14:57:32 +08:00
|
|
|
```
|