XSLT <xsl:copy-of>要素

定義と使用法

<xsl:copy-of>要素は現在のノードのコピーを作成します。

注記:現在のノードのNamespaceノード、子ノードおよび属性は自動的にコピーされます!

ヒント:この要素は、同じノードの複数のコピーを出力の異なる位置に挿入するために使用できます。

構文

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

属性

属性 説明
select expression 必須。コピーする内容を指定します。

例 1

<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:variable name="header">
  <tr>
  <th>要素</th>
  <th>説明</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>