Latest web development tutorials

XSLT <XSL: สำเนาของ> องค์ประกอบ

คู่มือการใช้งาน XSLT องค์ประกอบอ้างอิง คู่มือการใช้งาน XSLT ธาตุอ้างอิงที่สมบูรณ์

ความหมายและการใช้งาน

<xsl: สำเนาของ> องค์ประกอบสร้างสำเนาของโหนดปัจจุบัน

หมายเหตุ: Namespace โหนดปัจจุบันโหนดลูกและคุณลักษณะที่จะถูกคัดลอกโดยอัตโนมัติ!

หมายเหตุ: องค์ประกอบนี้สามารถใช้สำหรับหลายสำเนาของโหนดเดียวกันถูกแทรกเข้าไปในสถานที่ที่แตกต่างกันของการส่งออก


ไวยากรณ์

<xsl:copy-of select="expression"/>

คุณสมบัติ

属性 描述
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>Element</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>


คู่มือการใช้งาน XSLT องค์ประกอบอ้างอิง คู่มือการใช้งาน XSLT ธาตุอ้างอิงที่สมบูรณ์