You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
702 B

---
order: 5
title:
zh-CN: 分组
en-US: Option Group
---
9 years ago
## zh-CN
`OptGroup` 进行选项分组。
9 years ago
## en-US
Using `OptGroup` to group the options.
````jsx
import { Select } from 'antd';
const Option = Select.Option;
const OptGroup = Select.OptGroup;
9 years ago
function handleChange(value) {
console.log(`selected ${value}`);
9 years ago
}
9 years ago
ReactDOM.render(
<Select
defaultValue="lucy"
style={{ width: 200 }}
onChange={handleChange}
>
<OptGroup label="Manager">
<Option value="jack">Jack</Option>
<Option value="lucy">Lucy</Option>
9 years ago
</OptGroup>
<OptGroup label="Engineer">
<Option value="Yiminghe">yiminghe</Option>
9 years ago
</OptGroup>
</Select>
, mountNode);
9 years ago
````