XSLT <xsl:otherwise> ÔªËØ
¶¨ÒåºÍÓ÷¨
<xsl:otherwise> ÔªËØ¹æ¶¨ÁË <xsl:choose> ÔªËØµÄĬÈÏÐÐΪ¡£ÔÚûÓÐ <xsl:when> µÄÌõ¼þÓ¦ÓÃʱ£¬½«·¢Éú¸ÃÐÐΪ¡£
Óï·¨
<xsl:otherwise> <!-- Content:template --> </xsl:otherwise>
ÊôÐÔ
None
ʵÀý
Àý×Ó 1
ÏÂÃæµÄ´úÂ뽫ÔÚ cd µÄ¼Û¸ñ¸ßÓÚ 30 ʱ£¬Ïò artist ÁÐÌí¼Ó·ÛÉ«µÄ±³¾°É«£¬·ñÔò½ö½ö»áÊä³ö artist µÄ name£º
<?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> </xsl:stylesheet>
²é¿´ XML Îļþ£¬²é¿´ XSL Îļþ£¬²é¿´½á¹û¡£
Àý×Ó 2
ÉùÃ÷Ò»¸öÃûΪ "color" ±äÁ¿¡£°ÑËüµÄÖµ¸³¸øµ±Ç°ÔªËØµÄ color ÊôÐÔ¡£Èç¹ûµ±Ç°ÔªËØÃ»ÓÐ color ÊôÐÔ£¬"color" µÄÖµ½«ÊÇ "green"£º
<xsl:variable name="color">
<xsl:choose>
<xsl:when test="@color">
<xsl:value-of select="@color"/>
</xsl:when>
<xsl:otherwise>green</xsl:otherwise>
</xsl:choose>
</xsl:variable>