--- order: 1 title: zh-CN: 不可用 en-US: Disabled --- ## zh-CN Switch 失效状态。 ## en-US Disabled state of `Switch`. ````jsx import { Switch, Button } from 'antd'; const Test = React.createClass({ getInitialState() { return { disabled: true, }; }, toggle() { this.setState({ disabled: !this.state.disabled, }); }, render() { return (