html 中的 blockquote 属性 ''cite'' 的用途是什么?

What is the purpose of the blockquote attribute ''cite'' in html?

我无法理解这一点。

像这样单独使用 <cite> text </cite> 只会让文本看起来有点斜体,但我无法理解 cite 在 blockquote 中用作属性的目的。

例如:

<blockquote cite="http://www.example.com">

    For 50 years, WWF has been protecting the future of nature.

</blockquote> 

现在,这个 url link 出现在哪里?我到处都看到它只是说 "it's for reference",但参考在哪里?

link 不会显示在输出中,除非我使用 href<p> 使其出现。

那么这个属性 cite 在这种情况下到底做了什么?这个url出现在哪里?

根据https://www.w3.org/TR/2011/WD-html5-20110525/text-level-semantics.html#attr-q-cite

Content inside a q element must be quoted from another source, whose address, if it has one, may be cited in the cite attribute. The source may be fictional, as when quoting characters in a novel or screenplay.

If the cite attribute is present, it must be a valid URL potentially surrounded by spaces. To obtain the corresponding citation link, the value of the attribute must be resolved relative to the element. User agents should allow users to follow such citation links.

<p>
  ... or better said by Frank,
  <q cite="https://www.goodreads.com/author/show/22302.Frank_Zappa">
      So many books, so little time.
  </q>
</p>

因为它不是 link(不是人类可以遵循的东西),所以它显然是用于 SEO 目的,但主要用于索引。因此,如果您从另一个资源(例如另一个网站页面)中获取引文,则指向您从中获取该引文的站点的引用属性有助于搜索引擎索引此类资源关系。