Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有人可以解释以下html标签之间的区别吗?
<br/>
和
<br/> =20
我在一些 .eml 中找到了后者,但两者在呈现为 .eml 消息时似乎做同样的事情。
=20不是标签的一部分,它只是标签后面的文本<br/>。
=20
消息被编码为html/quoted-printable? 在quoted-printable 格式中,=用于引入特殊序列。当它后面跟着两个十六进制数字时,它被替换为具有该代码的字符。所以=20代表一个space字符。
html/quoted-printable
=
维基百科
0x20 是空间的十六进制 ascii 代码。我怀疑某些编码过程将“空格”替换为“= 20”。渲染的输出看起来是一样的。