如何将XML插入现有的XML节点

前端之家收集整理的这篇文章主要介绍了如何将XML插入现有的XML节点前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我甚至不确定是否有可能,但是说我有一些XML:
<source>
        <list>
            <element id="1"/>
        </list>
    </source>

我想插入列表:

<element id="2"/>

我可以写一个XSLT吗?

将这2个模板定义添加到XSLT文件中:
<xsl:template match="@*|node()">
  <xsl:copy>
    <xsl:apply-templates select="@*|node()"/>
  </xsl:copy>
</xsl:template>
<xsl:template match="list">
  <list>
     <xsl:apply-templates select="@* | *"/>
     <element id="2"/>
  </list>
</xsl:template>
原文链接:https://www.f2er.com/xml/293313.html

猜你在找的XML相关文章