최신 웹 개발 튜토리얼
 

XSLT <xsl:if> Element


<xsl:if> 요소는 XML 파일의 내용에 대해 조건 테스트를 넣어하는 데 사용됩니다.


<xsl:if> 요소

XML 파일의 내용에 대한 테스트, 추가하는 경우 조건을 넣으려면 <xsl:if> XSL 문서에 요소입니다.

통사론

<xsl:if test=" 어디에 두는 <xsl:if> 요소를

조건부 테스트를 추가하려면 추가 <xsl:if> 내부 요소 <xsl:for-each> XSL 파일의 요소 :

<?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>
      <th>Price</th>
    </tr>
    <xsl:for-each select="catalog/cd">
      <xsl:if test="price &gt; 10">
        <tr>
          <td><xsl:value-of select="title"/></td>
          <td><xsl:value-of select="artist"/></td>
          <td><xsl:value-of select="price"/></td>
        </tr>
      </xsl:if>
    </xsl:for-each>
  </table>
  </body>
  </html>
</xsl:template>

</xsl:stylesheet>
»그것을 자신을 시도

Note: 필요한 값 test 속성이 평가 될 수있는 표현이 포함되어 있습니다.

코드 위의 것입니다 만 출력이 높은 10보다 가격을 가지고있는 CD를 제목과 아티스트 요소.