基本介紹
- 中文名:XSLT when元素
- 屬性:test
- 值:boolean-expression
- 描述:必需。規定要測試的布爾表達式
正文,定義和用法,語法,實例,
正文
定義和用法
<xsl:when> 元素用於為 <xsl:choose> 元素規定相關動作。
<xsl:when> 元素會計算一個表達式,如果返回 true,則執行規定的動作。
注釋:<xsl:when> 元素提供多個與 <xsl:choose> 元素和 <xsl:otherwise> 元素有關的條件測試。
語法
<xsl:when test="boolean-expression"> <!-- Content: template --> </xsl:when>屬性
屬性 | 值 | 描述 |
---|---|---|
test | boolean-expression | 必需。規定要測試的布爾表達式。 |
實例
例子
下面的代碼會在 cd 的 price 高於 10 時向 artist 列添加粉色的背景色:
<?xml version="1.0" encoding="ISO-8859-1"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3. org/1999/XSL/Transform"> <xsl:template match="/"> <html> <body> <h2>My CD Collection</h2> <table border="1"> <tr bgcolor="#9acd32"><th>Title</th><th>Artist</th> </tr> <xsl:for-each select="catalog/cd"> <tr><td><xsl:value-of select="title"/></td> <xsl:choose> <xsl:when test="price>'10'"> <td bgcolor="#ff00ff"> <xsl:value-of select="artist"/></td> </xsl:when><xsl:otherwise> <td><xsl:value-of select="artist"/></td> </xsl:otherwise></xsl:choose> </tr> </xsl:for-each> </table> </body> </html> </xsl:template>