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.

32 lines
627 B

---
order: 5
title: 分组
---
9 years ago
`OptGroup` 进行选项分组。
9 years ago
````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 }}
showSearch={false}
onChange={handleChange}>
<OptGroup label="Manager">
<Option value="jack">jack</Option>
9 years ago
<Option value="lucy">lucy</Option>
</OptGroup>
<OptGroup label="Engineer">
9 years ago
<Option value="yiminghe">yiminghe</Option>
</OptGroup>
</Select>
, mountNode);
9 years ago
````