최신 웹 개발 튜토리얼
 

XSLT <xsl:when> Element


<전체 XSLT 요소 참조

정의 및 사용

<xsl:when> 요소가에 대한 작업을 지정하는 데 사용됩니다 <xsl:choose> 요소를. <xsl:when> 요소는 표현을 평가하고 true를 돌려주는 경우, 작업이 수행된다.

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


통사론

<xsl:when
test="boolean-expression">

  <!-- Content: template -->

</xsl:when>

속성

속성 기술
testboolean-expression 필요합니다. 부울 식을 테스트 할 지정

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