mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 19:50:05 +08:00
843 B
843 B
order | title | ||||
---|---|---|---|---|---|
4 |
|
zh-CN
点击菜单项后会触发事件,用户可以通过相应的菜单项 key 进行不同的操作。
en-US
An event will be triggered when you click menu items, in which you can make different operations according to item's key.
import { Menu, Dropdown, Icon, message } from 'antd';
const onClick = ({ key }) => {
message.info(`Click on item ${key}`);
};
const menu = (
<Menu onClick={onClick}>
<Menu.Item key="1">1st menu item</Menu.Item>
<Menu.Item key="2">2nd memu item</Menu.Item>
<Menu.Item key="3">3rd menu item</Menu.Item>
</Menu>
);
ReactDOM.render(
<Dropdown overlay={menu}>
<a className="ant-dropdown-link" href="#">
Hover me, Click menu item <Icon type="down" />
</a>
</Dropdown>,
mountNode,
);