如何在网页中显示文字HTML脚本?

时间:2011-07-20 13:57:28

标签: html

我有一些HTML脚本,我想让它显示在网页中,如代码选项:

<a href="#">test</a>

我该怎么做?

2 个答案:

答案 0 :(得分:17)

您需要对文本进行HTML转义,因为您可以轻松判断是否查看了此页面的HTML源代码:

<div class="post-text">
    <p>I have some HTML that I would like to make it appear like the code option here</p>

    <pre><code>&lt;a href="#"&gt;test&lt;/a&gt;
    </code></pre>

    <p>How can I do it?</p>
</div>            

答案 1 :(得分:6)

您需要对尖括号等进行编码才能在页面上显示。

您可以在html中手动执行此操作:

&lt;a href="#"&gt;test&lt;/a&gt;

其中:

&lt; = <

&gt; = >

对于其他字符,这里是一个字符代码表:http://en.wikipedia.org/wiki/List_of_XML_and_HTML_character_entity_references