Elemento <xsl:copy-of> de XSLT

Definición y uso

<xsl:copy-of> El elemento puede crear una copia del nodo actual.

Nota:¡Los nodos de Namespace, los subnodos y las propiedades del nodo actual se copiarán automáticamente!

Consejo:Este elemento se puede usar para insertar múltiples copias del mismo nodo en diferentes posiciones de la salida.

Sintaxis

<xsl:copy-of select="expresión"/>

Atributo

Atributo Valor Descripción
seleccionar expresión Obligatorio. Especifica el contenido que se debe copiar.

Ejemplo

Ejemplo 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="cabecera">
  <tr>
  <th>Elemento</th>
  <th>Descripción</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>