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

54 lines
1.0 KiB
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 6
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.
```tsx
import { DownOutlined } from '@ant-design/icons';
import type { MenuProps } from 'antd';
import { Dropdown, message, Space } from 'antd';
2022-05-23 14:37:16 +08:00
import React from 'react';
2018-06-27 15:55:04 +08:00
const onClick: MenuProps['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 items: MenuProps['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
const App: React.FC = () => (
<Dropdown menu={{ items, onClick }}>
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
);
export default App;
2019-05-07 14:57:32 +08:00
```