Skip to content

Latest commit

 

History

History
96 lines (75 loc) · 2.78 KB

File metadata and controls

96 lines (75 loc) · 2.78 KB
title slug
<dfn>
Web/HTML/Element/dfn

摘要

HTML 定义元素 (<dfn>) 表示术语的一个定义。

备注: <dfn> 元素标记了被定义的术语;术语定义应当在 {{HTMLElement("p")}}, {{HTMLElement("section")}}或定义列表 (通常是{{HTMLElement("dt")}}, {{HTMLElement("dd")}} 对) 中给出。

  • 被定义术语的值由下列规则确定:

    1. 如果 <dfn> 元素有一个 title 属性,那么该术语的值就是该属性的值。
    2. 否则,如果它仅包含一个 {{HTMLElement("abbr")}} 元素,该元素拥有 title 属性,那么该术语的值就是该属性的值。
    3. 否则,<dfn> 元素的文本内容就是该术语的值。
内容分类 Flow content, phrasing content, palpable content.
允许的内容 Phrasing content, but no {{HTMLElement("dfn")}} element must be a descendant.
标签省略 不允许,开始标签和结束标签都不能省略。
允许的父元素 Any element that accepts phrasing content.
DOM 接口 {{domxref("HTMLElement")}}

属性

该元素包括 全局属性

在 HTML5 中,title 属性拥有特殊含义,见上文。

示例

下列示例是合法的 HTML5。

<!-- Define "The Internet" -->
<p>
  <dfn id="def-internet">The Internet</dfn> is a global system of interconnected
  networks that use the Internet Protocol Suite (TCP/IP) to serve billions of
  users worldwide.
</p>

在同一文档的后面:

<dl>
  <!-- Define "World-Wide Web" and reference definition for "the Internet" -->
  <dt>
    <dfn>
      <abbr title="World-Wide Web">WWW</abbr>
    </dfn>
  </dt>
  <dd>
    The World-Wide Web (WWW) is a system of interlinked hypertext documents
    accessed on <a href="#def-internet">the Internet</a>.
  </dd>
</dl>

结果

{{ EmbedLiveSample('示例', '600', '150') }}

规范

{{Specifications}}

浏览器兼容性

{{Compat}}

相关链接

  • 定义列表的相关元素:{{HTMLElement("dl")}}, {{HTMLElement("dt")}}, {{HTMLElement("dd")}}
  • {{HTMLElement("abbr")}}

{{HTMLSidebar}}