如何在.html
页面中显示HTML标记,而不会让我的浏览器尝试执行标记中的任何内容。
答案 0 :(得分:12)
您必须使用转义版本。例如,<
变为<
(无引号),&
变为&
。
您应该能够找到完整的转换列表。
示例摘录:
<a href="http://google.com">Google</a>
是转义版本:
<a href="http://google.com">Google</a>
编辑:
标准的实体列表:http://www.w3.org/TR/html4/sgml/entities.html
维基百科上的艺术品:http://en.wikipedia.org/wiki/List_of_XML_and_HTML_character_entity_references
答案 1 :(得分:0)
你可以使用php函数“highlight_string();
”
像这样:
<?php
highlight_string('<?php phpinfo(); ?>');
?>
它将输入作为带有颜色编码的字符串输出。
看看它的php文档:
http://php.net/manual/en/function.highlight-string.php
答案 2 :(得分:-2)
在身体部位插入标签的答案可以通过<textarea>
标签。在开头和开头之间输入的文字或标签。关闭<textarea>
标记将如此显示。