XSLT <xsl:copy> ÔªËØ

¶¨ÒåºÍÓ÷¨

<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>
VUE