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: 21
|
|
|
|
title:
|
|
|
|
zh-CN: 扩展菜单
|
|
|
|
en-US: Custom dropdown
|
|
|
|
---
|
|
|
|
|
|
|
|
## zh-CN
|
|
|
|
|
|
|
|
使用 `dropdownRender` 对下拉菜单进行自由扩展。
|
|
|
|
|
|
|
|
## en-US
|
|
|
|
|
|
|
|
Customize the dropdown menu via `dropdownRender`.
|
|
|
|
|
|
|
|
````jsx
|
|
|
|
import { Select, Icon, Divider } from 'antd';
|
|
|
|
|
|
|
|
const Option = Select.Option;
|
|
|
|
|
|
|
|
ReactDOM.render(
|
|
|
|
<Select
|
|
|
|
defaultValue="lucy"
|
|
|
|
style={{ width: 120 }}
|
|
|
|
dropdownRender={menu => (
|
|
|
|
<div>
|
|
|
|
{menu}
|
|
|
|
<Divider style={{ margin: '4px 0' }} />
|
|
|
|
<div style={{ padding: '8px', cursor: 'pointer' }}>
|
|
|
|
<Icon type="plus" /> Add item
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
>
|
|
|
|
<Option value="jack">Jack</Option>
|
|
|
|
<Option value="lucy">Lucy</Option>
|
|
|
|
</Select>,
|
|
|
|
mountNode,
|
|
|
|
);
|
|
|
|
````
|