XSLT <xsl:copy-of> 元素

定义和用法

<xsl:copy-of> 元素可创建当前节点的一个副本。

注释:当前节点的 Namespace 节点、子节点以及属性都会被自动复制!

提示:该元素可用于把相同节点的多个副本插入到输出的不同位置。

语法

  1. <xsl:copy-of select="expression"/>

属性

属性 描述
select expression 必需。规定要拷贝的内容。

实例

例子 1

  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:variable name="header">
  6. <tr>
  7. <th>Element</th>
  8. <th>Description</th>
  9. </tr>
  10. </xsl:variable>
  11.  
  12. <xsl:template match="/">
  13. <html>
  14. <body>
  15. <table>
  16. <xsl:copy-of select="$header" />
  17. <xsl:for-each select="reference/record">
  18. <tr>
  19. <xsl:if test="category='XML'">
  20. <td><xsl:value-of select="element"/></td>
  21. <td><xsl:value-of select="description"/></td>
  22. </xsl:if>
  23. </tr>
  24. </xsl:for-each>
  25. </table>
  26. <br />
  27. <table>
  28. <xsl:copy-of select="$header" />
  29. <xsl:for-each select="table/record">
  30. <tr>
  31. <xsl:if test="category='XSL'">
  32. <td><xsl:value-of select="element"/></td>
  33. <td><xsl:value-of select="description"/></td>
  34. </xsl:if>
  35. </tr>
  36. </xsl:for-each>
  37. </table>
  38. </body>
  39. </html>
  40. </xsl:template>
  41.  
  42. </xsl:stylesheet>