2016-03-31 09:40:55 +08:00
|
|
|
---
|
|
|
|
order: 1
|
2016-07-26 09:17:46 +08:00
|
|
|
title:
|
|
|
|
zh-CN: 不可用
|
|
|
|
en-US: Disabled
|
2016-03-31 09:40:55 +08:00
|
|
|
---
|
2015-07-13 16:51:56 +08:00
|
|
|
|
2016-07-26 09:17:46 +08:00
|
|
|
## zh-CN
|
|
|
|
|
2015-07-20 14:32:21 +08:00
|
|
|
Switch 失效状态。
|
2015-07-13 16:51:56 +08:00
|
|
|
|
2016-07-26 09:17:46 +08:00
|
|
|
## en-US
|
|
|
|
|
|
|
|
Disabled state of `Switch`.
|
|
|
|
|
2019-05-07 14:57:32 +08:00
|
|
|
```jsx
|
2015-10-28 20:55:49 +08:00
|
|
|
import { Switch, Button } from 'antd';
|
2015-07-13 16:51:56 +08:00
|
|
|
|
2020-11-08 15:27:13 +08:00
|
|
|
const App = () => {
|
|
|
|
const [disabled, setDisabled] = React.useState(true);
|
2018-06-27 15:55:04 +08:00
|
|
|
|
2020-11-08 15:27:13 +08:00
|
|
|
const toggle = () => {
|
|
|
|
setDisabled(!disabled);
|
2019-05-07 14:57:32 +08:00
|
|
|
};
|
2018-06-27 15:55:04 +08:00
|
|
|
|
2020-11-08 15:27:13 +08:00
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<Switch disabled={disabled} defaultChecked />
|
|
|
|
<br />
|
|
|
|
<Button type="primary" onClick={toggle}>
|
|
|
|
Toggle disabled
|
|
|
|
</Button>
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
};
|
2015-07-13 16:51:56 +08:00
|
|
|
|
2017-02-20 22:15:52 +08:00
|
|
|
ReactDOM.render(<App />, mountNode);
|
2019-05-07 14:57:32 +08:00
|
|
|
```
|