如何在网站上显示XML格式的打印

时间:2015-01-06 19:57:06

标签: html css xml

我正在使用一些XML,我想在网站上显示它,但更喜欢显示一些样式版本。让我们说在一些boostrap表或类似的东西,但不知怎的,我不知道如何。

示例XML:

<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">

<channel>
  <title>W3Schools Home Page</title>
  <link>http://www.w3schools.com</link>
  <description>Free web building tutorials</description>
  <item>
    <title>RSS Tutorial</title>
    <link>http://www.w3schools.com/rss</link>
    <description>New RSS tutorial on W3Schools</description>
  </item>
  <item>
    <title>XML Tutorial</title>
    <link>http://www.w3schools.com/xml</link>
    <description>New XML tutorial on W3Schools</description>
  </item>
</channel>

</rss>

所以,假设我有这个XML,我想将它设置为表格的位置:

     Title          |            Link              |              Desc
W3Schools Home Page | http://www.w3schools.com/rss | New RSS tutorial on W3Schools
XML Tutorial        | http://www.w3schools.com/xml | New XML tutorial on W3Schools

你可以给我一些启示,或者有些人可以为我编写示例代码以使其更清晰。

我希望我不要求太多。谢谢大家!!

1 个答案:

答案 0 :(得分:0)

传统上这是通过XSLT完成的,XSLT是浏览器的指令表,可以自动将xml转换为html。

结帐:

https://greenbytes.de/tech/tc/xslt/

...有关书籍和其他信息的一些很棒的链接。

有一些工作示例:

http://www.w3schools.com/xsl/xsl_examples.asp