Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我刚刚学习了 xpath 和 xsl,我有一个问题。
如何<!-- foo -->在每个名为 foo 的 xml 元素的开头添加例如注释?
<!-- foo -->
我可以使用 xpath 或 xslt 吗?
是的,有一个 XSLT 元素:<xsl:comment>。
为了做你描述的事情,你可以使用以下内容:
<!-- Match foo elements in the XML --> <xsl:template match="foo"> <xsl:comment>foo</xsl:comment> <foo> <xsl:apply-templates /> </foo> </xsl:template>