0

这似乎很容易,但我以前从未遇到过。

应用 XSLT 后,我需要将 XML 文件中的注释保留到输出 XML。

有谁知道如何/如果这是可能的?谢谢!

4

1 回答 1

1

In your XSL you can reference comments in your source XML similar to other elements, e.g.:

<xsl:template match="comment()">
    <xsl:value-of select="."/>
</xsl:template>

If it should appear in your transformed XML as comment as well you can do the following:

<xsl:template match="comment()">
    <xsl:comment>
        <xsl:value-of select="."/>
    </xsl:comment>
</xsl:template>
于 2013-05-06T21:36:04.530 回答