|
发表于 2020-10-10 01:00:01
|
显示全部楼层
用XSLT来控制XML输出, xslT文件我帮你写出来了,你应该回用吧
下面的就是
<?xml version="1.0" encoding="gb2312"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="index">
<table width="230" border="0" cellpadding="0" cellspacing="0" bgcolor="#EDEDED">
<xsl:for-each select="index/theme">
<tr>
<td ><xsl:attribute name="href"><xsl:value-of select="link1"></xsl:value-of></xsl:attribute><xsl:value-of select="moteur1"></xsl:value-of></a></td>
</tr>
</xsl:for-each>
</table>
</xsl:template>
</xsl:stylesheet>
|
|