rel=“书签”是什么意思?链接属性?
标记中的
rel="bookmark"
属性的用途是什么?例如:
<a href="http://stackoverflow.com/questions/ask" rel="bookmark">Click Here</a>
它是否有任何 SEO 或 SEM 相关的目的?
What is the purpose of the rel="bookmark"
attribute in <a>
tags? For example:
<a href="http://stackoverflow.com/questions/ask" rel="bookmark">Click Here</a>
Does it serve any SEO- or SEM-related purpose?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这没有 SEO 价值或目的。我相信 rel=bookmark 标签的目的是标记永久链接,但它从未真正获得关注
This has no SEO value or purpose. I believe the rel=bookmark tag was intended to mark permalinks but it never really gained traction
LINK 元素的一个重要用途是定义导航按钮工具栏或等效机制(例如菜单项)。
为工具栏保留的 LINK 关系值为:
REL=Home
该链接引用主页或某个层次结构的顶部。
相对=目录
该链接引用了一个充当目录的文档。
REL=索引
该链接引用一个为当前文档提供索引的文档。
REL=术语表
该链接引用了一个文档,该文档提供了与当前文档相关的术语表。
REL=版权
该链接引用了当前文档的版权声明。
相对=向上
当文档构成层次结构的一部分时,此链接引用当前文档的直接父级。
相对=下一个
该链接引用了导览中要访问的下一个文档。
REL=上一个
该链接引用了导览中的上一个文档。
REL=帮助
该链接引用提供帮助的文档,例如描述更广泛的上下文并提供相关文档的进一步链接。此举旨在为迷失方向的用户重新定向。
REL=书签
书签用于提供指向扩展文档的关键入口点的直接链接。 TITLE 属性可用于标记书签。每个文档中可以定义多个书签,并提供一种在扩展文档中引导用户的方法。
来自:http://www.w3.org/MarkUp/html3/dochead.html
An important use of the LINK element is to define a toolbar of navigation buttons or an equivalent mechanism such as menu items.
LINK relationship values reserved for toolbars are:
REL=Home
The link references a home page or the top of some hierarchy.
REL=ToC
The link references a document serving as a table of contents.
REL=Index
The link references a document providing an index for the current document.
REL=Glossary
The link references a document providing a glossary of terms that pertain to the current document.
REL=Copyright
The link references a copyright statement for the current document.
REL=Up
When the document forms part of a hierarchy, this link references the immediate parent of the current document.
REL=Next
The link references the next document to visit in a guided tour.
REL=Previous
The link references the previous document in a guided tour.
REL=Help
The link references a document offering help, e.g. describing the wider context and offering further links to relevant documents. This is aimed at reorienting users who have lost their way.
REL=Bookmark
Bookmarks are used to provide direct links to key entry points into an extended document. The TITLE attribute may be used to label the bookmark. Several bookmarks may be defined in each document, and provide a means for orienting users in extended documents.
From: http://www.w3.org/MarkUp/html3/dochead.html
属性“rel”表示关系。这是一种微格式。 HTML4 规范将书签描述为“扩展文档中关键入口点的链接”。按照惯例(需要引用),这个入口点还捕获了“永久链接”的概念。示例:
标签的 rel 属性的另一个示例:
http://microformats.org/wiki/rel-书签#rel.3D.22bookmark.22
The attribute "rel" means relationship. It's a microformats. The HTML4 spec describes a bookmark as "a link to a key entry point within an extended document". By convention (citation needed), this entry point also captures the notion of a "permalink". Exemple:
Another exemple of rel attribute for tags:
http://microformats.org/wiki/rel-bookmark#rel.3D.22bookmark.22