©
이 문서에서는 PHP 중국어 웹사이트 매뉴얼 풀어 주다
<xsl:copy> 元素可创建当前节点的一个副本。
注意:当前节点的 Namespace 节点会被自动复制,但是当前节点的子节点和属性不会被自动复制!
<xsl:copy use-attribute-sets="name-list"> <!-- Content:template --> </xsl:copy>
属性 | 值 | 描述 |
---|---|---|
use-attribute-sets | name-list | 可选。如果该节点是元素,则该属性是应用到输出节点的属性集列表,由空格分隔。 |
把 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>