Escape tags in html(html中的转义标签)
问题描述
什么是html中的转义标签?
What are escape tags in html?
他们是"
<
>
代表"
<
>
?
这些是如何工作的?
那是十六进制,还是什么?
它是如何制作的,为什么它们不只是角色本身?
Are they "
<
>
to represent "
<
>
?
And how do these work?
Is that hex, or what is it?
How is it made, and why aren't they just the characters themselves?
推荐答案
这里有一些常见的实体.您不需要使用完整的代码 - 经常使用的实体有通用别名.例如,您可以使用 <和>表示小于和大于符号.&是和号等.
Here are some common entities. You do not need to use the full code - there are common aliases for frequently used entities. For example, you can use < and > to indicate less than and greater than symbols. & is ampersand, etc.
那应该是 - <>&
另一个常见的字符是  
,它通常用于表示 <code>
段中的选项卡
Another common character is  
which is often used to represent tabs in <code>
segments
这篇关于html中的转义标签的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:html中的转义标签


基础教程推荐
- 为什么我在 Vue.js 中得到 ERR_CONNECTION_TIMED_OUT? 2022-01-01
- jQuery File Upload - 如何识别所有文件何时上传 2022-01-01
- Node.js 有没有好的索引/搜索引擎? 2022-01-01
- WatchKit 支持 html 吗?有没有像 UIWebview 这样的控制器? 2022-01-01
- 如何在特定日期之前获取消息? 2022-01-01
- 如何使用sencha Touch2在单页中显示列表和其他标签 2022-01-01
- 什么是不使用 jQuery 的经验技术原因? 2022-01-01
- 每次设置弹出窗口的焦点 2022-01-01
- Javascript 在多个元素上单击事件侦听器并获取目标 2022-01-01
- 如何使用 CSS 显示和隐藏 div? 2022-01-01