عنصر <xsl:copy-of> XSLT
تعریف و استفاده
عنصر <xsl:copy-of> یک کپی از گره فعلی ایجاد میکند.
نکته:Namespace گره فعلی، فرزندان و ویژگیهای آن به صورت خودکار کپی خواهند شد!
توجه:این عنصر میتواند برای قرار دادن چندین نسخه از یک گره مشابه در مکانهای مختلف خروجی استفاده شود.
نحوهی استفاده
<xsl:copy-of 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>