📅  最后修改于: 2023-12-03 15:31:09.838000             🧑  作者: Mango
HTML rev 属性定义一个页面或页面上的某个元素的相关文档的关系。
该属性被视为废弃,不应再使用。建议使用更加规范的 aria-* 属性代替。
<a href="url" rev="relationship">link text</a>
relationship
:指定链接所代表的页面与当前页面之间的关系。常见的值包括:alternate
:代表页面的另一种版本stylesheet
:代表当前文档所依赖的外部样式表first
、previous
、next
、last
:代表当前页面在某个序列中的位置index
:代表当前页面的索引页start
、contents
、glossary
、chapter
、section
、subsection
、appendix
、help
、bookmark
:代表当前页面的所属类别或类型<a href="http://www.example.com/" rev="start">First page</a>
<a href="page2.html" rev="next prev">Next page</a>
<a href="page1.html" rev="prev next">Previous page</a>
<a href="http://www.example.com/contents.html" rev="contents">Table of contents</a>
<a href="http://www.example.com/chapter1.html" rev="chapter">Chapter 1</a>
rel
属性、语义化的HTML标签等。