0
我在第三列的狀態,但它的價值是在第一列來了...我該如何改變這種狀況?如何更改XSLT中的列值?
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<body>
<table border="1">
<tr bgcolor="#9acd32">
<th>Title</th>
<th>Artist</th>
<th>status</th>
</tr>
<xsl:for-each select="catalog/cd[artist='Bob Dylan']">
<tr>
<td><xsl:value-of select="title"/></td>
<td><xsl:value-of select="artist"/></td>
</tr>
</xsl:for-each>
<xsl:for-each select="catalog/cd/dude" >
<tr>
<td><xsl:value-of select="status"/></td>
</tr>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
基本上它的現身,如:
Title Artist status
Empire Burlesque Bob Dylan
hello
我想:
Title Artist status
Empire Burlesque Bob Dylan hello
我如何去這樣做呢?
這是源XML:
<catalog>
<cd>
<title>Empire Burlesque</title>
<artist>Bob Dylan</artist>
<country>USA</country>
<company>Columbia</company>
<price>10.90</price>
<year>1985</year>
<dude>
<status>hello</status>
</dude>
</cd>
</catalog>
它看起來像你說你想你所得到的是同樣的事情。即使在上面的評論中,似乎也是這樣。 – RacerNerd
你應該把你的代碼示例中的問題。 – RacerNerd