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

查看 XML 文件查看 XSL 文件查看结果