最新的Web開發教程
 

XSLT <xsl:copy-of> Element


<完整XSLT元素參考

定義和用法

所述<xsl:copy-of>元素創建當前節點的副本。

Note:命名空間節點,子節點和當前節點的屬性被自動複製的!

Tip:該元素可以用來插入相同節點的多個副本到輸出不同的地方。


句法

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

屬性

屬性 描述
selectexpression 需要。 指定要複製什麼

實施例1

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:variable name="header">
  <tr>
  <th>Element</th>
  <th>Description</th>
  </tr>
</xsl:variable>

<xsl:template match="/">
  <html>
  <body>
  <table>
    <xsl:copy-of select="$header" />
    <xsl:for-each select="reference/record">
    <tr>
    <xsl:if test="category='XML'">
      <td><xsl:value-of select="element"/></td>
      <td><xsl:value-of select="description"/></td>
    </xsl:if>
    </tr>
    </xsl:for-each>
  </table>
  <br />
  <table>
    <xsl:copy-of select="$header" />
    <xsl:for-each select="table/record">
    <tr>
    <xsl:if test="category='XSL'">
      <td><xsl:value-of select="element"/></td>
      <td><xsl:value-of select="description"/></td>
    </xsl:if>
    </tr>
    </xsl:for-each>
  </table>
  </body>
  </html>
</xsl:template>

</xsl:stylesheet>

<完整XSLT元素參考