我有要使用XSLT在一個表中顯示的XML文件中的一個表中的兩個細胞,我想用colspan設爲合併單元當兩個節點具有相同的值,例如:合併使用XSLT
<Magasin>
<bouteille>
<marque>marque1</marque>
</bouteille>
<bouteille>
<marque>marque1</marque>
</bouteille>
<bouteille>
<marque>marque2</marque>
</bouteille>
</Magasin>
這裏是我的XSLT:
<table>
<thead>
<tr><xsl:for-each select="document('Pub.xml')/Magasin/bouteille/marque">
<th><xsl:value-of select="."/></th>
</xsl:for-each></tr>
</thead>
</table>
對不起,我不清楚,我張貼真正的代碼。 – Mina
這是*分組*問題:你可以使用XSLT 2.0嗎? –
@ michael.hor257k我正在使用版本2.0 – Mina