XSLT 入门教程 XSLT <xsl:copy> 元素

2024-02-26 开发教程 XSLT 入门教程 匿名 5

XSLT <xsl:copy> 元素

XSLT <xsl:copy> 元素用于创建当前节点的一份拷贝。



定义和用法

<xsl:copy> 元素可创建当前节点的一个副本。

注意:当前节点的 Namespace 节点会被自动复制,但是当前节点的子节点和属性不会被自动复制!


语法

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

属性

属性描述
use-attribute-setsname-list可选。如果该节点是元素,则该属性是应用到输出节点的属性集列表,由空格分隔。

实例 1

把 message 节点拷贝到输出文档:

<?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>


在下一节内容中,你将会了解 <xsl:copy-of> 元素!请注意区分 <xsl:copy-of> 元素和 <xsl:copy> 元素!