mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-11-30 19:19:26 +08:00
33 lines
614 B
Markdown
33 lines
614 B
Markdown
# 分组
|
|
|
|
- order: 5
|
|
|
|
option分组
|
|
|
|
---
|
|
|
|
````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);
|
|
````
|