최신 웹 개발 튜토리얼
 

XSLT <xsl:choose> Element


<XSLT 요소 참조

정의 및 사용

<xsl:choose> 요소와 함께 사용되는 <xsl:when><xsl:otherwise> 여러 시험 조건을 표현.

경우에는 <xsl:when> 사실의 내용 <xsl:otherwise> 처리된다. 없다

만약 더 <xsl:when> 사실, 더 <xsl:otherwise> 요소가 존재, 아무것도 만들어지지 않습니다.하지

Tip: 간단한 조건부 테스트를 들어, 사용 <xsl:if> 대신 요소를.


통사론

<xsl:choose>

  <!-- Content:(xsl:when+,xsl:otherwise?) -->

</xsl:choose>

속성

없음


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>
»그것을 자신을 시도

라는 변수 선언 "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 요소 참조