轉載請註明來源:用xml和xsl做網頁實例
用xml和xsl做網頁。直接大家儲存兩個檔案運行即可。
cdcatalog.xml 相當於html
cdcatalog.xsl 相當於css
cdcatalog.xml
[html] view plaincopy
[html] view plaincopy
<?xml version="1.0" encoding="ISO-8859-1"?> <?xml-stylesheet type="text/xsl" href="http://www.php1.cn/"> <catalog> <cd> <title>Empire Burlesque</title> <artist>Bob Dylan</artist> <country>USA</country> <company>Columbia</company> <price>10.90</price> <year>1985</year> </cd> <cd> <title>Empire Burlesqu2e</title> <artist>Bob Dyla2n</artist> <country>USA2</country> <company>Columbia2</company> <price>10.91</price> <year>1983</year> </cd> <cd> <title>Empire Burlesqu2e</title> <artist>Bob Dyla2n</artist> <country>USA2</country> <company>Columbia2</company> <price>10.91</price> <year>1983</year> </cd> <cd> <title>Empire Burlesqu2e</title> <artist>Bob Dyla2n</artist> <country>USA2</country> <company>Columbia2</company> <price>10.91</price> <year>1983</year> </cd> <cd> <title>Empire Burlesqu2e</title> <artist>Bob Dyla2n</artist> <country>USA2</country> <company>Columbia2</company> <price>10.91</price> <year>1983</year> </cd> <cd> <title>Empire Burlesqu2e</title> <artist>Bob Dyla2n</artist> <country>USA2</country> <company>Columbia2</company> <price>10.91</price> <year>1983</year> </cd> </catalog>
效果:
My CD Collection
Artist
Empire Burlesque | Bob Dylan |
---|---|
Empire Burlesqu2e | Bob Dyla2n |
Empire Burlesqu2e | Bob Dyla2n |
Empire Burlesqu2e | Bob Dyla2n |
Empire Burlesqu2e | Bob Dyla2n |
Empire Burlesqu2e | Bob Dyla2n |
以上就是用xml和xsl做網頁實例的內容,更多相關內容請關注PHP中文網(www.php.cn)! |