--- order: 4 title: zh-CN: 全选 en-US: Check all --- ## zh-CN 在实现全选效果时,你可能会用到 `indeterminate` 属性。 ## en-US The `indeterminate` property can help you to achieve a 'check all' effect. ````jsx import { Checkbox } from 'antd'; const CheckboxGroup = Checkbox.Group; const plainOptions = ['Apple', 'Pear', 'Orange']; const defaultCheckedList = ['Apple', 'Orange']; const App = React.createClass({ getInitialState() { return { checkedList: defaultCheckedList, indeterminate: true, checkAll: false, }; }, render() { return (