在线文档教程

xsl:choose

xsl:choose

XSLT / XPath参考:XSLT元素, EXSLT函数,XPath函数,XPath轴

该<xsl:choose>元素定义了多种替代方案中的一种选择。它在过程语言中就像一个switch语句。

语法

<xsl:choose> <xsl:when test="[whatever to test1]"></xsl:when> <xsl:when test="[whatever to test2]"></xsl:when> <xsl:otherwise></xsl:otherwise> [optional] </xsl:choose>

必需的属性

None.

可选属性

None.

类型

指令,与模板一起出现。它包含一个或多个<xsl:when>元素,以及可选的最终<xsl:otherwise>元素。

Defined

XSLT, section 9.2.

Gecko 支持

Supported.