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

56 lines
950 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 3
2016-07-04 10:48:21 +08:00
title:
zh-CN: 触发方式
en-US: Trigger mode
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-12-02 15:18:15 +08:00
默认是移入触发菜单,可以点击触发。
2015-06-09 13:46:47 +08:00
2016-07-04 10:48:21 +08:00
## en-US
The default trigger mode is `hover`, you can change it to `click`.
```tsx
import { DownOutlined } from '@ant-design/icons';
2022-05-21 22:14:15 +08:00
import { Dropdown, Menu, Space } from 'antd';
import React from 'react';
2015-06-09 13:46:47 +08:00
const menu = (
<Menu
items={[
{
label: <a href="https://www.antgroup.com">1st menu item</a>,
key: '0',
},
{
label: <a href="https://www.aliyun.com">2nd menu item</a>,
key: '1',
},
{
type: 'divider',
},
{
label: '3rd menu item',
key: '3',
},
]}
/>
);
2015-06-09 13:46:47 +08:00
const App: React.FC = () => (
<Dropdown overlay={menu} trigger={['click']}>
2022-04-22 13:35:27 +08:00
<a onClick={e => e.preventDefault()}>
<Space>
Click me
<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
```