-1

我正在调用一个 xsl 模板,我在其中构建了一个表。我想根据参数中的值有条件地设置表格的颜色。有什么建议么 ?

前任。

<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>
4

1 回答 1

1

您可以在此处使用属性值模板。替换<tr>为:

<tr style="background-color:{$bgcolor}">

花括号表示要计算的表达式,而不是字面输出,因此它将被您传递给模板的任何颜色名称替换。例如:

<tr style="background-color:white">
于 2013-10-27T12:05:17.763 回答