عنصر XSLT <xsl:copy-of>
التعريف والاستخدام
<xsl:copy-of> العنصر يمكن أن يحتوي على نسخة من النقطة الحالية.
ملاحظة:سيتم نسخ مسمى النامسبي للنقطة الحالية، والفرع والصفات تلقائيًا!
نصيحة:يمكن استخدام هذا العنصر ل插入相同节点的多个 نسخ إلى مواقع مختلفة في الناتج.
النحو
<xsl:copy-of select="expression"/>
الصفة
الصفة | القيمة | الوصف |
---|---|---|
select | التعبير | مطلوب. تحديد المحتوى الذي سيتم نسخه. |
مثال
مثال 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>