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

55 lines
988 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 4
2016-07-04 10:48:21 +08:00
title:
zh-CN: 触发事件
en-US: Click event
2016-03-31 09:40:55 +08:00
---
2015-06-09 13:46:47 +08:00
2016-07-04 10:48:21 +08:00
## zh-CN
2015-06-09 13:46:47 +08:00
点击菜单项后会触发事件,用户可以通过相应的菜单项 key 进行不同的操作。
2016-07-04 10:48:21 +08:00
## en-US
An event will be triggered when you click menu items, in which you can make different operations according to item's key.
2019-05-07 14:57:32 +08:00
```jsx
2022-04-22 13:35:27 +08:00
import { Menu, Dropdown, message, Space } from 'antd';
import { DownOutlined } from '@ant-design/icons';
2018-06-27 15:55:04 +08:00
2018-11-28 15:00:03 +08:00
const onClick = ({ key }) => {
message.info(`Click on item ${key}`);
2015-06-09 18:08:56 +08:00
};
2015-06-09 13:46:47 +08:00
const menu = (
<Menu
onClick={onClick}
items={[
{
label: '1st menu item',
key: '1',
},
{
label: '2nd menu item',
key: '2',
},
{
label: '3rd menu item',
key: '3',
},
]}
/>
);
2015-06-09 13:46:47 +08:00
export default () => (
2015-06-09 13:46:47 +08:00
<Dropdown overlay={menu}>
2022-04-22 13:35:27 +08:00
<a onClick={e => e.preventDefault()}>
<Space>
Hover me, Click menu item
<DownOutlined />
</Space>
2015-12-02 15:18:15 +08:00
</a>
</Dropdown>
2018-11-28 15:00:03 +08:00
);
2019-05-07 14:57:32 +08:00
```