HTML <blockquote> 标签的 cite 属性 详解
HTML基础 2022-06-02 11:58:38小码哥的IT人生shichen
HTML <blockquote> 标签的 cite 属性
实例
下面这个 blockquote 元素中的 cite 属性指定了引用的来源:
<blockquote cite="http://www.wwf.org">
WWF's ultimate goal is to build a future where people live in harmony with nature.
</blockquote>
完整实例【亲自试一试】:
<html>
<body>
Here is a quote from WWF's website:
<blockquote cite="http://www.wwf.org">
WWF's ultimate goal is to build a future where people live in harmony with nature.
</blockquote>
We hope that they succeed.
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
定义和用法
cite 属性规定引用的来源。
该属性的值是一个包含在引号中并指向联机文档的 URL,以及(如果有可能的话)引用在该文档中的确切位置。
浏览器支持
主流浏览器均不支持 cite 属性。不过,搜索引擎可能会使用该属性获得更多有关引用的信息。
语法
<blockquote cite="URL">
属性值
值 | 描述 |
---|---|
URL |
引用的来源的 URL。 可能的值:
|