--- order: 2 title: zh-CN: 多选 en-US: Multiple --- ## zh-CN 多选和勾选框功能。 ## en-US Multiple and checkable. ````jsx import { TreeSelect } from 'antd'; const SHOW_PARENT = TreeSelect.SHOW_PARENT; const treeData = [{ label: 'Node1', value: '0-0', key: '0-0', children: [{ label: 'Child Node1', value: '0-0-0', key: '0-0-0', }], }, { label: 'Node2', value: '0-1', key: '0-1', children: [{ label: 'Child Node3', value: '0-1-0', key: '0-1-0', }, { label: 'Child Node4', value: '0-1-1', key: '0-1-1', }, { label: 'Child Node5', value: '0-1-2', key: '0-1-2', }], }]; const Demo = React.createClass({ getInitialState() { return { value: ['0-0-0'], }; }, onChange(value) { console.log('onChange ', value, arguments); this.setState({ value }); }, render() { const tProps = { treeData, value: this.state.value, onChange: this.onChange, multiple: true, treeCheckable: true, showCheckedStrategy: SHOW_PARENT, searchPlaceholder: 'Please select', style: { width: 300, }, }; return ; }, }); ReactDOM.render(, mountNode); ````