--- order: 2 title: zh-CN: 受控的 Checkbox en-US: Controlled Checkbox --- ## zh-CN 联动 checkbox。 ## en-US Communicated with other components. ````__react import { Checkbox, Button } from 'antd'; const App = React.createClass({ getInitialState() { return { checked: true, disabled: false, }; }, render() { const label = `${this.state.checked ? 'Checked' : 'Unchecked'}-${this.state.disabled ? 'Disabled' : 'Enabled'}`; return (

{label}

); }, toggleChecked() { this.setState({ checked: !this.state.checked }); }, toggleDisable() { this.setState({ disabled: !this.state.disabled }); }, onChange(e) { console.log('checked = ', e.target.checked); this.setState({ checked: e.target.checked, }); }, }); ReactDOM.render(, mountNode); ````