XSLT <xsl:copy-of> ਐਲੀਮੈਂਟ

ਵਿਆਖਿਆ ਅਤੇ ਵਰਤੋਂ

<xsl:copy-of> ਐਲੀਮੈਂਟ ਮੌਜੂਦਾ ਨੂੰ ਇੱਕ ਅਪਰੀਨੀਸ਼ਨ ਬਣਾ ਸਕਦਾ ਹੈ。

ਟਿੱਪਣੀ:ਮੌਜੂਦਾ ਨੂੰਮੁਕਤ ਸਮਾਂਤਰ ਅਤੇ ਉਪ-ਸਮਾਂਤਰ ਅਤੇ ਵਿਸ਼ੇਸ਼ਤਾਵਾਂ ਆਪਣੇ ਆਪ ਕਾਪੀ ਕਰਦੇ ਹਨ!

ਸੁਝਾਅ:ਇਹ ਐਲੀਮੈਂਟ ਬਾਹਰੀ ਨਾਮ ਸਮਾਂਤਰ, ਉਪ-ਸਮਾਂਤਰ ਅਤੇ ਵਿਸ਼ੇਸ਼ਤਾਵਾਂ ਨੂੰ ਆਪਣੇ ਆਪ ਕਾਪੀ ਕਰਦਾ ਹੈ!

ਸਿਧਾਂਤ

<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>ਐਲੀਮੈਂਟ</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>