mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-03 00:09:39 +08:00
6776bb8916
* docs: update demo * chore: add script * test: fix demo test * docs: convert demos * chore: move script * test: remove react-dom import * chore: update deps * docs: update riddle js * test: fix image test * docs: fix riddle demo
43 lines
820 B
Markdown
43 lines
820 B
Markdown
---
|
|
order: 3
|
|
title:
|
|
zh-CN: 自定义 onClick 事件
|
|
en-US: Customize the onClick event
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
点击锚点不记录历史。
|
|
|
|
## en-US
|
|
|
|
Clicking on an anchor does not record history.
|
|
|
|
```tsx
|
|
import { Anchor } from 'antd';
|
|
|
|
const { Link } = Anchor;
|
|
|
|
const handleClick = (
|
|
e: React.MouseEvent<HTMLElement>,
|
|
link: {
|
|
title: React.ReactNode;
|
|
href: string;
|
|
},
|
|
) => {
|
|
e.preventDefault();
|
|
console.log(link);
|
|
};
|
|
|
|
export default () => (
|
|
<Anchor affix={false} onClick={handleClick}>
|
|
<Link href="#components-anchor-demo-basic" title="Basic demo" />
|
|
<Link href="#components-anchor-demo-static" title="Static demo" />
|
|
<Link href="#API" title="API">
|
|
<Link href="#Anchor-Props" title="Anchor Props" />
|
|
<Link href="#Link-Props" title="Link Props" />
|
|
</Link>
|
|
</Anchor>
|
|
);
|
|
```
|