XSLT <xsl:apply-templates> 요소

<xsl:apply-templates> 요소는 현재 요소나 현재 요소의 자식 요소에 템플릿을 적용할 수 있습니다.

<xsl:apply-templates> 요소

<xsl:apply-templates> 요소는 현재 요소나 현재 요소의 자식 요소에 템플릿을 적용할 수 있습니다.

만약 우리가 <xsl:apply-templates> 요소에 select 속성을 추가하면, 이 요소는 해당 속성 값과 일치하는 자식 요소만 처리합니다. select 속성을 사용하여 자식 노드가 처리되는 순서를 지정할 수 있습니다.

아래의 XSL 스타일 시트를 참조하세요:

<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<body>
<h2>My CD Collection</h2> 
<xsl:apply-templates/> 
</body>
</html>
</xsl:template>
<xsl:template match="cd">
<p>
<xsl:apply-templates select="title"/> 
<xsl:apply-templates select="artist"/>
</p>
</xsl:template>
<xsl:template match="title">
제목: <span style="color:#ff0000">
<xsl:value-of select="."/></span>
<br />
</xsl:template>
<xsl:template match="artist">
Artist: <span style="color:#00ff00">}}
<xsl:value-of select="."/></span>
<br />
</xsl:template>
</xsl:stylesheet>

이 XML 파일 확인,이 XSL 파일 확인,결과 확인.