我有类似的 XML
<BOXHEAD>
<COLHEAD H="1">Item</COLHEAD>
<COLHEAD H="2">Cost</COLHEAD>
<COLHEAD H="3">Direct</COLHEAD>
<COLHEAD H="3">In-Direct</COLHEAD>
<COLHEAD H="2">Revenue</COLHEAD>
<COLHEAD H="3">1989</COLHEAD>
<COLHEAD H="3">1990</COLHEAD>
</BOXHEAD>
我尝试过类似的方法来转换为 HTML COLSPAN:
<xsl:if test="@H=2">
<xsl:variable name="descendants" select="following-sibling::COLHEAD[@H = 3]"/>
<xsl:variable name="number_of_columns_under_this" select="count($descendants)"/>
<xsl:if test="$number_of_columns_under_this > 1">
<xsl:attribute name="colspan">
<xsl:value-of select="$number_of_columns_under_this"/>
</xsl:attribute>
</xsl:if>
</xsl:if>
期望的结果:“成本”列应该出现,colspan="2"
但当然会count()
选择块中的所有四个@H="3"
。我正在尝试将那个古老的 SGML 变成一个 HTML 表格。所需的输出与此类似:
<table>
<tbody>
<tr>
<td colspan="1" rowspan="2">Item</td>
<td colspan="2" rowspan="1">Cost</td>
<td colspan="2" rowspan="1">Revenue</td>
</tr>
<tr>
<td>Direct</td>
<td>In-Direct</td>
<td>1989</td>
<td>1990</td>
</tr>
</tbody>
</table>
事实证明,计算行跨度和列跨度对我来说很困难。