在我的情況下,如何在XSL中聲明循環外的變量並設置一些值?
我必須使用外部循環的變量與一些默認值,並在循環中我必須將其設置爲一些值。
我該如何做到這一點?請讓我知道解決方案。
示例代碼(我已經使用):
<xsl:variable name="flagforselectedOption" select="'true'"/>
<xsl:for-each>
<xsl:if test="">
<xsl:variable name="flagforselectedOption" select="'true'"/>
</xsl:if>
</xsl:for-each>
</xsl:variable>
它不會爲我工作。請讓我知道如何做到這一點。