打印“”使用html
如何打印“html”标签,包括“<”和“>”?如何在不使用文本区域和 JavaScript 的情况下对任何标签执行此操作?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何打印“html”标签,包括“<”和“>”?如何在不使用文本区域和 JavaScript 的情况下对任何标签执行此操作?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(10)
使用 HTML 字符引用:
应该输出
Use HTML character references:
Should output
HTML 中的特殊字符,例如 '<'、'>'、'"' 和 '&'可以使用以下格式打印:
其中 name 将替换为字符名称,
因此,您可以用 HTML 编写 :
Special characters in HTML, such as '<', '>', '"' and '&' can be printed using the following format:
where name would be replaced by a character name. The most common would then be
So to write <html> you would write in HTML:
尝试做:
Try doing:
请查看 html 实体
您可以使用该实体直接在 html 中命名。
<代码>
将呈现为
。
同样
3> 2
将呈现为
3 > 2.
.尝试所有 html 实体并检查此 Fiddle 中的输出
Please have a look at html entities
You can use the entity names directly in your html.
<p> <html> </p>
will render as<html>
.likewise
<p> 3 > 2 </p>
will render as3 > 2
.Try all the html entities and check the output in this Fiddle
如果您想按字面显示
,请使用 reference 来表示标签开始分隔符
<
和标签结束分隔符>
,例如:这将显示为:
If you want to display
<html>
literally, use reference to represent the tag open delimiter<
and the tag close delimiter>
, for example:This will then be displayed as:
这样做
do this
放置<和> HTML 中的字符,您必须输入其对应的字符序列。例如,
<
的序列为<
,而>
的序列为>.如果您将所有
<
和>
替换为相应的字符,您将能够在您的网站中呈现 HTML 代码。然而,这个过程可能有点乏味。这就是为什么互联网上有一些工具可以帮助您做到这一点。例如:To put < and > characters in HTML, you have to input their corresponding character sequences. For example,
<
's sequence is<
while>
's sequence is>
. If you replace all the<
and>
with their corresponding characters you will be able to present the HTML code in your website. However, this process can be a bit tedious. This is why there are tools on the internet that help you do this. For example:我的输出代码
my output code
<HTML>
要打印 HTML 标记
,请写入或
两者都会给出相同的输出:
To print an HTML tag write
or
<html>
both gives the same output :
<html>
最好和最简单的方法:
Best and easyest way: