최신 웹 개발 튜토리얼
 

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 요소 참조