我有一些HTML脚本,我想让它显示在网页中,如代码选项:
<a href="#">test</a>
我该怎么做?
答案 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><a href="#">test</a>
</code></pre>
<p>How can I do it?</p>
</div>
答案 1 :(得分:6)
您需要对尖括号等进行编码才能在页面上显示。
您可以在html中手动执行此操作:
<a href="#">test</a>
其中:
< = <
> = >
对于其他字符,这里是一个字符代码表:http://en.wikipedia.org/wiki/List_of_XML_and_HTML_character_entity_references