ant-design/components/dropdown/demo/event.md
2022-04-11 17:41:54 +08:00

972 B

order title
4
zh-CN en-US
触发事件 Click event

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, message } from 'antd';
import { DownOutlined } from '@ant-design/icons';

const onClick = ({ key }) => {
  message.info(`Click on item ${key}`);
};

const menu = (
  <Menu
    onClick={onClick}
    items={[
      {
        label: '1st menu item',
        key: '1',
      },
      {
        label: '2nd menu item',
        key: '2',
      },
      {
        label: '3rd menu item',
        key: '3',
      },
    ]}
  />
);

export default () => (
  <Dropdown overlay={menu}>
    <a className="ant-dropdown-link" onClick={e => e.preventDefault()}>
      Hover me, Click menu item <DownOutlined />
    </a>
  </Dropdown>
);