ant-design/components/button/demo/disabled.md
2017-02-13 10:55:53 +08:00

750 B

order title
3
zh-CN en-US
不可用状态 Disabled

zh-CN

添加 disabled 属性即可让按钮处于不可用状态,同时按钮样式也会改变。

en-US

To mark a button as disabled, add the disabled property to the Button.

import { Button } from 'antd';

ReactDOM.render(
  <div>
    <Button type="primary">Primary</Button>
    <Button type="primary" disabled>Primary(disabled)</Button>
    <br />
    <Button>Default</Button>
    <Button disabled>Default(disabled)</Button>
    <br />
    <Button>Ghost</Button>
    <Button disabled>Ghost(disabled)</Button>
    <br />
    <Button type="dashed">Dashed</Button>
    <Button type="dashed" disabled>Dashed(disabled)</Button>
  </div>,
  mountNode
);