ant-design/components/dropdown/index.md

40 lines
1.9 KiB
Markdown
Raw Normal View History

2016-03-31 14:17:09 +08:00
---
category: Components
chinese: 下拉菜单
2016-06-27 18:21:12 +08:00
type: Views
2016-03-31 14:17:09 +08:00
english: Dropdown
---
2015-06-08 19:10:47 +08:00
2015-06-14 17:54:08 +08:00
向下弹出的列表。
2015-06-08 19:10:47 +08:00
## 何时使用
2015-08-21 15:22:09 +08:00
当页面上的操作命令过多时,用此组件可以收纳操作元素。点击或移入触点,会出现一个下拉菜单。可在列表中进行选择,并执行相应的命令。
2015-06-08 19:10:47 +08:00
## API
属性如下
2015-08-21 15:22:09 +08:00
| 成员 | 说明 | 类型 | 默认值 |
|-------------|------------------|--------------------|--------------|
2016-02-24 21:45:09 +08:00
| trigger | 触发下拉的行为 | ['click'] or ['hover'] | ['hover'] |
2016-05-26 21:45:38 +08:00
| overlay | 菜单 | [Menu](/components/menu) | - |
2016-05-11 02:02:23 +08:00
| getPopupContainer | 菜单渲染父节点。默认渲染到 body 上,如果你遇到菜单滚动定位问题,试试修改为滚动的区域,并相对其定位。[示例](http://codepen.io/anon/pen/xVBOVQ?editors=001) | Function(triggerNode) | () => document.body |
2016-05-26 21:45:38 +08:00
| visible | 菜单是否显示 | Bool | 无 |
| onVisibleChange | 菜单显示状态改变时调用,参数为 { visible } | Function | - |
2015-06-08 19:10:47 +08:00
2015-08-21 15:22:09 +08:00
菜单可由 `antd.Menu` 取得,可设置 `onSelect` 回调,菜单还包括菜单项 `antd.Menu.Item`,分割线 `antd.Menu.Divider`
2015-06-08 19:10:47 +08:00
2015-06-09 14:46:51 +08:00
> 注意: Menu.Item 必须设置唯一的 key 属性。
2015-12-02 15:18:15 +08:00
### DropdownButton
| 成员 | 说明 | 类型 | 默认值 |
|-------------|------------------|--------------------|--------------|
2016-05-26 21:45:38 +08:00
| type | 按钮类型,和 [Button](/components/button) 一致 | String | 'default' |
| onClick | 点击左侧按钮的回调,和 [Button](/components/button) 一致 | Function | - |
| trigger | 触发下拉的行为 | ['click'] or ['hover'] | ['hover'] |
2016-05-26 21:45:38 +08:00
| overlay | 菜单 | [Menu](/components/menu) | - |
| visible | 菜单是否显示 | Bool | 无 |
| onVisibleChange | 菜单显示状态改变时调用,参数为 { visible } | Function | - |