我知道实体<和>用于<和>,但我很好奇这些名称代表什么。
<
>
<
>
<是代表“离开了标签”之类的东西,还是只是一个代码?
它们用于显式地定义小于和大于符号。如果有人想输入<html>,而不是HTML中的标记,就可以使用它们。另一种方法是将<code>元素包裹在代码周围,以避免遇到这种情况。
<html>
<code>
它们也可以用来表示数学运算符。
<!ENTITY lt CDATA "<" -- less-than sign, U+003C ISOnum --> <!ENTITY gt CDATA ">" -- greater-than sign, U+003E ISOnum -->
http://www.w3.org/TR/html4/sgml/entities.html
≤
≤
≥
≥
< == lesser-than == < > == greater-than == >
<小于:<
> > >
< =小于<, > =大于>
<
>
> and <是HTML中>和<字符的字符实体引用。
> and <
不能在文件中使用小于(<)或大于(>)符号,因为浏览器会将它们与标记混合在一起。
对于这些困难,你可以使用实体名称(>)和实体编号(<)。
<
在# EYZ0:
<= this is <= => this is =>
<h1>
参考:# EYZ0
<代表lesser than (<) symbol, >代表greater than (>) symbol。
lesser than (<) symbol
greater than (>) symbol
有关HTML实体的更多信息,请访问此链接:
https://www.w3schools.com/HTML/html_entities.asp
<test1>
具有HTML友好的名称:
<test1>
或asci编号:
<test1>
或复数asci:
<test1>
结果:& # 60;& # 116;& # 101;& # 115;& # 116;& # 49;& # 62;
asci引用:https://www.w3schools.com/charsets/ref_html_ascii.asp