XSLT <xsl:apply-templates> 元素

<xsl:apply-templates> 元素可把一个模板应用于当前的元素或者当前元素的子节点。

<xsl:apply-templates> 元素

<xsl:apply-templates> 元素可把一个模板应用于当前的元素或者当前元素的子节点。

假如我们向 <xsl:apply-templates> 元素添加一个 select 属性,此元素就会仅仅处理与属性值匹配的子元素。我们可以使用 select 属性来规定子节点被处理的顺序。

请看下面的 XSL 样式表:

  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <xsl:stylesheet version="1.0"
  3. xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  4.  
  5. <xsl:template match="/">
  6. <html>
  7. <body>
  8. <h2>My CD Collection</h2>
  9. <xsl:apply-templates/>
  10. </body>
  11. </html>
  12. </xsl:template>
  13.  
  14. <xsl:template match="cd">
  15. <p>
  16. <xsl:apply-templates select="title"/>
  17. <xsl:apply-templates select="artist"/>
  18. </p>
  19. </xsl:template>
  20.  
  21. <xsl:template match="title">
  22. Title: <span style="color:#ff0000">
  23. <xsl:value-of select="."/></span>
  24. <br />
  25. </xsl:template>
  26.  
  27. <xsl:template match="artist">
  28. Artist: <span style="color:#00ff00">
  29. <xsl:value-of select="."/></span>
  30. <br />
  31. </xsl:template>
  32.  
  33. </xsl:stylesheet>