blob: 075d88686c5207e27411c08131d9855468367ab4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
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>
|