首页 > 其他 > 详细

XSL样式的使用区别于XML的文本

时间:2015-03-09 16:12:32      阅读:150      评论:0      收藏:0      [点我收藏+]

这里使用加上前缀的XSL与XML进行区别

<?xml version = "1.0" encoding = "ISO-8859-1"?>

<xsl:stylesheet version = "1.0" xmlns:xsl = "http://www.w3g.org/1999/XSL/Transform">
<xsl:template match = "/">
<html>
<body>
<h2>My CD Collection</h2>
<table border = "1">
<tr>
<th align = "left">Title</th>
<th align = "left">Artist</th>
</tr>
<xsl:for-each select = "catalog/cd">
<tr>
<td><xsl:value-of select = "title"/><td>
<td><xsl:value-of select = "artist"/><td>
</tr>
</xsl:foreach>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>

XSL样式的使用区别于XML的文本

原文:http://blog.csdn.net/u012965373/article/details/44155905

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!