--- order: 4 title: zh-CN: 自定义锚点高亮 en-US: Customize the anchor highlight --- ## zh-CN 自定义锚点高亮。 ## en-US Customize the anchor highlight. ```tsx import { Anchor } from 'antd'; import React from 'react'; const { Link } = Anchor; const getCurrentAnchor = () => '#components-anchor-demo-static'; const App: React.FC = () => ( ); export default App; ```