最新のWeb開発のチュートリアル
 

XSLT <xsl:otherwise> Element


<完全なXSLT要素のリファレンス

定義と使用法

<xsl:otherwise>要素は、のデフォルトのアクションを指定<xsl:choose>要素。 このアクションは行われるときのいずれも<xsl:when>の条件が適用されます。


構文

<xsl:otherwise>

  <!-- Content:template -->

</xsl:otherwise>

属性

なし

例1

CDの価格は10よりも高い場合、以下のコードでは、それ以外の場合は、ちょうどアーティストの名前が印刷されます、アーティスト欄にピンクの背景色を追加します。

<?xml version="1.0" encoding="UTF-8"?>
<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&gt;'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"になります"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>

<完全なXSLT要素のリファレンス