ant-design/components/dropdown/demo/basic.md

40 lines
768 B
Markdown
Raw Normal View History

2015-06-08 19:10:47 +08:00
# 基本
- order: 0
2015-06-09 13:46:47 +08:00
最简单的下拉菜单。
2015-06-08 19:10:47 +08:00
---
````jsx
var Menu = antd.Menu;
var Dropdown = antd.Dropdown;
2015-10-02 15:12:07 +08:00
var Icon = antd.Icon;
2015-06-08 19:10:47 +08:00
2015-06-09 13:46:47 +08:00
var menu = <Menu>
<Menu.Item>
2015-06-10 17:12:03 +08:00
<a target="_blank" href="http://www.alipay.com/">第一个菜单项</a>
2015-06-09 13:46:47 +08:00
</Menu.Item>
<Menu.Item>
2015-06-10 17:12:03 +08:00
<a target="_blank" href="http://www.taobao.com/">第二个菜单项</a>
2015-06-09 13:46:47 +08:00
</Menu.Item>
<Menu.Item>
<a target="_blank" href="http://www.tmall.com/">第三个菜单项</a>
</Menu.Item>
2015-06-08 19:10:47 +08:00
</Menu>;
React.render(
2015-06-09 14:46:51 +08:00
<Dropdown overlay={menu}>
2015-06-17 14:44:24 +08:00
<button className="ant-btn ant-btn-menu">
2015-10-02 15:12:07 +08:00
某按钮 <Icon type="down" />
2015-06-09 13:46:47 +08:00
</button>
2015-06-08 19:10:47 +08:00
</Dropdown>
, document.getElementById('components-dropdown-demo-basic'));
````
2015-06-09 18:28:53 +08:00
<style>
.code-box-demo .ant-btn {
margin-right: 6px;
}
</style>