you can study xls language in the below link :

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

CSS = Style Sheets for HTML

XSL = Style Sheets for XML

think the xml like html and xsl like css .

for example:

xml:

<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet href="hellostyle.xslt" type="text/xsl"?>
<collection>
    <book>
        <author year= "1990" > John Doe </author>
        <title> JavaScript </title>
        <price> 10.99 </price>
    </book>
    <book>
        <author year= "2000" > Mary Jones </author>
        <title> Photoshop Secrets </title>
        <price> 15.99 </price>
    </book>
    <book>
        <author year= "2005" > Garry Po </author>
        <title> PHP Programming </title>
        <price> 20.99 </price>
    </book>
</collection>
View Code

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-26
  • 2021-05-26
  • 2022-01-05
  • 2021-06-27
  • 2022-12-23
猜你喜欢
  • 2021-08-19
  • 2021-12-15
  • 2022-02-09
  • 2021-07-30
  • 2021-10-20
  • 2021-08-13
  • 2021-10-25
相关资源
相似解决方案