عنصر <xsl:copy> XSLT

تعریف و استفاده

عنصر <xsl:copy> می‌تواند یک کپی از نود فعلی ایجاد کند.

توضیحات:نامسپاری هائی کاینیگایا نیماسپاری کاینیگایا، لکین نیماسپاری کاینیگایا و کاینیگایا کاینیگایا نیماسپاری کاینیگایا!

فوغا

<xsl:copy use-attribute-sets="name-list">
  <!-- Content:template -->
</xsl:copy>

Attribute

Attribute Value Description
use-attribute-sets name-list Optional. If the node is an element, then this attribute is the list of attributes applied to the output node, separated by spaces.

Instance

Example 1

Copy the message node to the output document:

<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="message">
  <xsl:copy>
    <xsl:apply-templates/>
  </xsl:copy>
</xsl:template>
</xsl:stylesheet>