--- order: 5 title: zh-CN: 分组 en-US: Option Group --- ## zh-CN 用 `OptGroup` 进行选项分组。 ## en-US Using `OptGroup` to group the options. ````__react import { Select } from 'antd'; const Option = Select.Option; const OptGroup = Select.OptGroup; function handleChange(value) { console.log(`selected ${value}`); } ReactDOM.render( , mountNode); ````