的變量。當我這樣做:類型爲字符串或數字
<xsl:variable name="t">
<xsl:choose>
<xsl:when test="1=1">
<xsl:value-of select="1"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="0"/>
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
名爲t
字符串或數字變量的類型?
如果字符串並不意味着,我可以簡單地說:
<xsl:variable name="t">
<xsl:choose>
<xsl:when test="1=1">1</xsl:when>
<xsl:otherwise>0</xsl:otherwise>
</xsl:choose>
</xsl:variable>