如何在同一页面中显示XML和其他类型的数据?
<?xml version="1.0" encoding="ISO-8859-1"?>
<catalog>
<cd>
<title>Empire Burlesque</title>
<artist>Bob Dylan</artist>
<country>USA</country>
<country>Columbia</country>
<price>10.90</price>
<year>1985</year>
</cd>
</catalog>
上面的XML应该显示为带格式的原样。 另外,我想在我的页面中显示HTML表格和其他东西。 如何实现这一点?
一个简单的解决方案是在元素中嵌入,该元素将保留格式和尖括号。 我还用
style=“border:none;”
删除了边框,这使得文本区域不可见。
下面是一个示例:http://jsfiddle.net/y9fqf/1/
您可以使用旧的
标记。 我不知道对浏览器的支持,但应该还能用。
<HTML>
your code/tables
<xmp>
<catalog>
<cd>
<title>Empire Burlesque</title>
<artist>Bob Dylan</artist>
<country>USA</country>
<country>Columbia</country>
<price>10.90</price>
<year>1985</year>
</cd>
</catalog>
</xmp>
输出:
your code/tables
<catalog>
<cd>
<title>Empire Burlesque</title>
<artist>Bob Dylan</artist>
<country>USA</country>
<country>Columbia</country>
<price>10.90</price>
<year>1985</year>
</cd>
</catalog>
<pre lang="xml" >{{xmlString}}</pre>
这对我有用。 感谢http://www.codeproject.com/answers/998872/display-xml-in-html-div#answer1