<XSLT 요소 참조
정의 및 사용
<xsl:if> 요소가 지정된 조건이 true 인 경우에만 적용됩니다 템플릿이 포함되어 있습니다.
Tip: 사용 <xsl:choose> 와 함께 <xsl:when> 와 <xsl:otherwise> 여러 조건 테스트를 표현하기!
통사론
<xsl:if
test="expression">
<!-- Content: template -->
</xsl:if>
속성
속성 | 값 | 기술 |
---|---|---|
test | expression | 필요합니다. 테스트 할 조건을 지정합니다 |
예
CD의 가격이 10보다 높은 경우 제목과 아티스트의 값을 선택합니다 :
예 1
<?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">
<xsl:if test="price > 10">
<tr>
<td><xsl:value-of select="title"/></td>
<td><xsl:value-of select="artist"/></td>
</tr>
</xsl:if>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
»그것을 자신을 시도 각 CD의 제목을 표시합니다. 삽입 ", " 이 마지막 CD 또는 마지막으로이 아닌 경우 각 CD 타이틀 사이. 이 마지막 CD 인 경우, 추가 "!" 제목 뒤에. 그것이 마지막으로 하나의 CD 인 경우, 추가 ", and " 제목 뒤에 :
예 2
<?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>
<p>Titles:
<xsl:for-each select="catalog/cd">
<xsl:value-of select="title"/>
<xsl:if test="position()!=last()">
<xsl:text>, </xsl:text>
</xsl:if>
<xsl:if test="position()=last()-1">
<xsl:text> and </xsl:text>
</xsl:if>
<xsl:if test="position()=last()">
<xsl:text>!</xsl:text>
</xsl:if>
</xsl:for-each>
</p>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
»그것을 자신을 시도 <XSLT 요소 참조