HTML 5 <a> 标签的 rel 属性

实例

带有 rel 属性的链接:

<a rel="nofollow" href="http://www.ctrip.com.cn/">Cheap Flights</a>

亲自试一试

定义和用法

rel 属性规定当前文档与被链接文档之间的关系。

仅在 href 属性存在时使用。

HTML 4.01 与 HTML 5 之间的差异

已删除的值:appendix, chapter, contents, copyright, glossary, index, section, start, subsection。

新的值:archives, author, bookmark, external, first, index, last, license, nofollow, noreferrer, search, sidebar, tag, up。

语法

<a rel="value">

属性值

描述
alternate 链接到文档的替代版本(例如打印页、翻译或镜像)。
archives 链接到文档集或历史数据。
author 链接到文档的作者。
bookmark 用作书签的永久 URL。
external 链接到外部文档。
first 链接到集合中的首个文档。
help 链接到帮助文档。
index 链接到文档的索引。
last 链接到集合中最后的文档。
licence 链接到文档的版权信息。
next 集合中下一个文档。
nofollow

链接到未认可的文档,比如付费链接。

Google 使用 "nofollow" 来规定其搜索蜘蛛不跟踪该链接。

noreferrer 规定当用户跟随该超链接时,浏览器不应发送 HTTP referer 头。
prev 集合中的前一个文档。
search 链接到文档的搜索工具。
sidebar 链接到应该在浏览器边栏中显示的文档。
tag 当前文档标签(关键词)。
up 提供指向一个文档的链接。该文档提供当前文档的上下文关系。