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.
|
|
|
---
|
|
|
|
order: 5
|
|
|
|
title: 分组
|
|
|
|
---
|
|
|
|
|
|
|
|
用 `OptGroup` 进行选项分组。
|
|
|
|
|
|
|
|
````jsx
|
|
|
|
import { Select } from 'antd';
|
|
|
|
const Option = Select.Option;
|
|
|
|
const OptGroup = Select.OptGroup;
|
|
|
|
|
|
|
|
function handleChange(value) {
|
|
|
|
console.log(`selected ${value}`);
|
|
|
|
}
|
|
|
|
|
|
|
|
ReactDOM.render(
|
|
|
|
<Select defaultValue="lucy"
|
|
|
|
style={{ width: 200 }}
|
|
|
|
showSearch={false}
|
|
|
|
onChange={handleChange}>
|
|
|
|
<OptGroup label="Manager">
|
|
|
|
<Option value="jack">jack</Option>
|
|
|
|
<Option value="lucy">lucy</Option>
|
|
|
|
</OptGroup>
|
|
|
|
<OptGroup label="Engineer">
|
|
|
|
<Option value="yiminghe">yiminghe</Option>
|
|
|
|
</OptGroup>
|
|
|
|
</Select>
|
|
|
|
, mountNode);
|
|
|
|
````
|