打印“”使用html

发布于 2024-09-14 21:54:19 字数 74 浏览 5 评论 0 原文

如何打印“html”标签,包括“<”和“>”?如何在不使用文本区域和 JavaScript 的情况下对任何标签执行此操作?

How do I print the "html" tag, including '<' and '>'? How can I do this for any tag, without using text areas and Javascript?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(10

东北女汉子 2024-09-21 21:54:19

使用 HTML 字符引用

<html>

应该输出

<html>

Use HTML character references:

<html>

Should output

<html>
鸠魁 2024-09-21 21:54:19

HTML 中的特殊字符,例如 '<'、'>'、'"' 和 '&'可以使用以下格式打印:

&name;

其中 name 将替换为字符名称,

<   =   <    (less than)
>   =   >    (greater than)
&  =   &    (ampersand)
" =   "    (double quote)

因此,您可以用 HTML 编写 :

<html>

Special characters in HTML, such as '<', '>', '"' and '&' can be printed using the following format:

&name;

where name would be replaced by a character name. The most common would then be

<   =   <    (less than)
>   =   >    (greater than)
&  =   &    (ampersand)
" =   "    (double quote)

So to write <html> you would write in HTML:

<html>
心如狂蝶 2024-09-21 21:54:19

尝试做:

<html>

Try doing:

<html>
波浪屿的海角声 2024-09-21 21:54:19

请查看 html 实体

在此处输入图像描述

您可以使用该实体直接在 html 中命名。

<代码>

将呈现为

同样

3> 2

将呈现为 3 > 2. .

尝试所有 html 实体并检查此 Fiddle 中的输出

Please have a look at html entities

enter image description here

You can use the entity names directly in your html.

<p> <html> </p> will render as <html>.

likewise

<p> 3 > 2 </p> will render as 3 > 2.

Try all the html entities and check the output in this Fiddle

如何视而不见 2024-09-21 21:54:19

如果您想按字面显示 ,请使用 reference 来表示标签开始分隔符 < 和标签结束分隔符 >,例如:

<html>

这将显示为:

If you want to display <html> literally, use reference to represent the tag open delimiter < and the tag close delimiter >, for example:

<html>

This will then be displayed as:

<html>

乖乖兔^ω^ 2024-09-21 21:54:19

这样做

<html>

do this

<html>
谜泪 2024-09-21 21:54:19

描绘链接放置<和> HTML 中的字符,您必须输入其对应的字符序列。例如,< 的序列为 <,而 > 的序列为 >.如果您将所有 <> 替换为相应的字符,您将能够在您的网站中呈现 HTML 代码。然而,这个过程可能有点乏味。这就是为什么互联网上有一些工具可以帮助您做到这一点。例如:

  1. https://displayhtmlcode.pythonanywhere.com/ (一个非常简单的网站,只需执行您的操作即可需要它来做。)

portrayal of linkTo 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:

  1. https://displayhtmlcode.pythonanywhere.com/ (A very simple website that does just what you need it to do.)
鸢与 2024-09-21 21:54:19
<html>

我的输出代码

<html>

my output code <HTML>

假情假意假温柔 2024-09-21 21:54:19

要打印 HTML 标记

<html> 

,请写入或

两者都会给出相同的输出:

To print an HTML tag write

<html> 

or <html>

both gives the same output : <html>

棒棒糖 2024-09-21 21:54:19

最好和最简单的方法:

 <xmp>
// your codes ..
</xmp>

Best and easyest way:

 <xmp>
// your codes ..
</xmp>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文