codecamp

XSLT <xsl:copy> 元素

XSLT <xsl:copy> 元素

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


XSLT 元素参考手册 完整的 XSLT 元素参考手册

定义和用法

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

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


语法

<xsl:copy use-attribute-sets="name-list">

<!-- Content:template -->

</xsl:copy>

属性

属性 描述
use-attribute-sets name-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>

XSLT 元素参考手册 完整的 XSLT 元素参考手册

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

XSLT <xsl:comment> 元素
XSLT <xsl:copy-of> 元素
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }