mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-03 16:39:41 +08:00
43 lines
611 B
Markdown
43 lines
611 B
Markdown
---
|
|
order: 1
|
|
title:
|
|
zh-CN: 不可用
|
|
en-US: Disabled
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
Switch 失效状态。
|
|
|
|
## en-US
|
|
|
|
Disabled state of `Switch`.
|
|
|
|
````jsx
|
|
import { Switch, Button } from 'antd';
|
|
|
|
class App extends React.Component {
|
|
state = {
|
|
disabled: true,
|
|
}
|
|
|
|
toggle = () => {
|
|
this.setState({
|
|
disabled: !this.state.disabled,
|
|
});
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<div>
|
|
<Switch disabled={this.state.disabled} defaultChecked />
|
|
<br />
|
|
<Button type="primary" onClick={this.toggle}>Toggle disabled</Button>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
ReactDOM.render(<App />, mountNode);
|
|
````
|