-1
我正在調用一個xsl模板,在這個模板中構建一個表格。我想有條件地設置表的顏色取決於param中的值。有什麼建議麼 ?將參數傳遞給一個xsl模板
Ex。
<xsl:template match="sometemplate">
<xsl:param name="bgcolor" select="'black'"/>
<table>
<!-- I have to set the background color of this tr depending on the value of bgcolor -->
<tr>
<td>
<!-- Do Something -->
</td>
</tr>
<table>
</xsl:template>
<xsl:template match="callingTemplate">
<xsl:apply-templates select="sometemplate">
<xsl:with-param name="bgcolor" select="'white'"/>
</xsl:apply-templates>
</xsl:template>