跳转到内容

Links 链接

您可以通过链接(Links)组件,轻松的使用主题颜色和字体铸排的样式来自定义锚定元素。

The Link component is built on top of the Typography component, meaning that you can use its props.

Press Enter to start editing

但是,链接组件与文字铸排组件相比,它们存在一些不同的默认属性:

  • 当链接需要突出显示时,设置 color="primary"
  • 在多数的情况下,当链接需要作为文字铸排的子组件使用,则设置 variant="inherit"

下划线

underline 属性可以用来设置下划线行为。 该属性的默认值是 hover

Press Enter to start editing

安全性

当你将 target="_blank"和链接组件一起使用时,若想和第三方的内容相连,我们推荐始终配置 rel="noopener" 或者 rel="noreferrer"

  • rel="noopener" 会阻止新页面访问 window.opener 属性,并确保它在单独的进程运行。 若不如此,目标页面有极大可能将你的页面重定向至一个恶意网址。
  • rel ="noreferrer" 具有相同的效果,但它也提供阻止将 Referer 标头发送到新页面的功能。 ⚠️ 去除 referrer header 会影响分析。

Third-party routing library(第三方路由库)

One frequent use case is to perform navigation on the client only, without an HTTP round-trip to the server. 针对这种用法,Link 组件了提供 component 属性来适配它。 针对这种用法,Link 组件了提供 component 属性来适配它。 Here is a more detailed guide.

无障碍设计

(WAI-ARIA: https://www.w3.org/WAI/ARIA/apg/patterns/link/)

  • 当提供链接对应的内容时,避免使用泛泛的描述,比如“点击这里”或“跳转”之类。 相反的,请使用 具体详细的描述说明。
  • 为了获得最佳的用户体验,链接应该从页面上的文字中脱颖而出。 For instance, you can keep the default underline="always" behavior.
  • If a link doesn't have a meaningful href, it should be rendered using a <button> element.
Press Enter to start editing