XSLT <xsl:apply-templates> 요소
- 이전 페이지 XSLT <choose>
- 다음 페이지 XSLT 클라이언트에서
<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"> 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>
- 이전 페이지 XSLT <choose>
- 다음 페이지 XSLT 클라이언트에서