diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/zh-cn/glossary/entity | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/zh-cn/glossary/entity')
-rw-r--r-- | files/zh-cn/glossary/entity/index.html | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/files/zh-cn/glossary/entity/index.html b/files/zh-cn/glossary/entity/index.html new file mode 100644 index 0000000000..075d88686c --- /dev/null +++ b/files/zh-cn/glossary/entity/index.html @@ -0,0 +1,63 @@ +--- +title: Entity +slug: Glossary/Entity +tags: + - Entity + - Glossary + - HTML + - HTML实体 + - 字符实体 + - 实体 +translation_of: Glossary/Entity +--- +<p><span class="seoSummary">{{glossary("HTML")}} 实体是一段以连字号(<code>&</code>)开头、以分号(<code>;</code>)结尾的文本(字符串)。实体常常用于显示保留字符(这些字符会被解析为 HTML 代码)和不可见的字符(如“不换行空格”)。你也可以用实体来代替其他难以用标准键盘键入的字符。</span></p> + +<div class="note"> +<p>很多字符都有易于记忆的实体。例如版权符号 (<code>©</code>) 的实体是 <code>&copy;</code>。对于没那么容易记住的字符,例如 <code>&#8212;</code> 或 <code>&#x2014;</code>,你可以查看 <a href="https://html.spec.whatwg.org/multipage/named-characters.html#named-character-references">参考表</a> 或使用 <a href="https://mothereff.in/html-entities">解码工具 </a>。</p> +</div> + +<h2 id="保留字符">保留字符</h2> + +<p>有一些特别的字符被保留用于 HTML 中,这意味着浏览器会将这些字符解析为 HTML 代码。例如,如果你使用小于号(<code><</code>),浏览器会将其后的文本解析为一个 {{Glossary('tag')}}。</p> + +<p>为了将这些字符显示为文本,需要使用相应的字符实体来代替它们,如下表所示。</p> + +<table class="standard-table"> + <thead> + <tr> + <th scope="col">字符</th> + <th scope="col">实体</th> + <th scope="col">说明</th> + </tr> + </thead> + <tbody> + <tr> + <td>&</td> + <td><code>&amp;</code></td> + <td>解析为实体或字符引用的开头</td> + </tr> + <tr> + <td><</td> + <td><code>&lt;</code></td> + <td>解析为 {{Glossary('tag')}} 的开头</td> + </tr> + <tr> + <td>></td> + <td><code>&gt;</code></td> + <td>解析为 {{Glossary('tag')}} 的结尾</td> + </tr> + <tr> + <td>"</td> + <td><code>&quot;</code></td> + <td>解析为 {{Glossary('attribute')}} 的值的开头和结尾</td> + </tr> + </tbody> +</table> + +<h2 id="查看更多">查看更多</h2> + +<h3 id="技术参考">技术参考</h3> + +<ul> + <li><a href="https://html.spec.whatwg.org/multipage/named-characters.html#named-character-references">字符实体的官方列表</a></li> +</ul> |