我不能让它工作......我只是想改变一个全局定义的变量的值:
<xsl:variable name="isBusiness"></xsl:variable>
<xsl:choose>
<xsl:when test="yes this is a business">
<xsl:variable name="isBusiness">true</xsl:variable>
</xsl:when>
<xsl:otherwise>
<xsl:variable name="isBusiness">false</xsl:variable>
</xsl:otherwise>
</xsl:choose>
显然代码无效,因为已经定义了,但是如何更改值?
答案 0 :(得分:15)
检查此链接:
http://www.dpawson.co.uk/xsl/sect2/N8090.html#d10874e187
基本上,您的代码应如下所示:
<xsl:variable name="x">
<xsl:choose>
<xsl:when test="a">z</xsl:when>
<xsl:when test="b">zz</xsl:when>
<xsl:otherwise>zzz</xsl:otherwise>
</xsl:choose>
</xsl:variable>