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>