최신 웹 개발 튜토리얼
 

XSLT <xsl:copy-of> Element


<전체 XSLT 요소 참조

정의 및 사용

<xsl:copy-of> 엘리먼트는 현재 노드의 복사본을 생성한다.

Note: 자동으로 네임 스페이스 노드, 자식 노드, 현재 노드의 속성을 복사됩니다!

Tip: 이 요소는 출력에서 다른 장소로 동일한 노드의 여러 복사본을 삽입하는데 사용될 수있다.


통사론

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

속성

속성 기술
selectexpression 필요합니다. 복사 할 것을 지정

예 1

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:variable name="header">
  <tr>
  <th>Element</th>
  <th>Description</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 요소 참조