8. HTML实体 {ignore}

[toc]

1. HTML Entity

实体字符,即:HTML Entity

实体字符通常用于在页面中显示一些特殊符号。

2. 实体字符的两种写法

  1. &单词;
  2. &#数字;

3. 常见实体字符的书写

  • 小于符号:<

&lt; —— less than

&#60;&#x0003c; —— 等价于: &lt; 也表示小于符号,不过数字不好记,一般情况下会使用单词。它们之间的对应关系可以到:https://dev.w3.org/html5/html-author/charref 这里面查。

8. HTML实体 - 图1

  • 大于符号:>

&gt; —— great than

  • 空格符号:

&nbsp; —— non-break space

  • 版权符号:©

&copy; —— 这个符号 © 搜狗输入法可以打出来,输入版权(banquan)两个字即可。

  • &符号

&amp;

小结

  • HTML entity 的两种写法:

    • &单词;
    • &#数字;
  • 了解常见的 HTML entity:

    • < &lt;
    • > &gt;
    • © &copy;
    • 空格 &nbsp;
    • & &amp;