谁能帮我使用 XSLT 拆分子节点。只有child1
应该与其他孩子分开。
<parent>
<child1>
<child2>
<child3>
<parent>
输出:
<parent>
<child1>
<element>
<child2>
<child3>
</element>
<parent>
这是一个简单的解决方案。
当这个 XSLT:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output omit-xml-declaration="yes" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:template match="/*">
<parent>
<xsl:copy-of select="child1"/>
<element>
<xsl:copy-of select="*[not(self::child1)]"/>
</element>
</parent>
</xsl:template>
</xsl:stylesheet>
...针对提供的 XML 应用:
<parent>
<child1/>
<child2/>
<child3/>
</parent>
...产生了想要的结果:
<parent>
<child1/>
<element>
<child2/>
<child3/>
</element>
</parent>
如果我理解正确,你有这样的 xml:
<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="data.xsl"?>
<data>
<parent>
<child>123</child>
<child>345</child>
<child>678</child>
</parent>
</data>
并想像这样展示它:
<span>123</span>
<ul>
<li>345</li>
<li>678</li>
</ul>
如果正确,请使用下一个代码:
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:template match="/">
<html>
<head>
<title></title>
</head>
<body>
<xsl:apply-templates/>
</body>
</html>
</xsl:template>
<xsl:template match="parent">
<strong><xsl:value-of select="child[1]/text()"/></strong>
<ul>
<xsl:for-each select="child">
<xsl:if test="position() != 1">
<li><xsl:value-of select="text()"/></li>
</xsl:if>
</xsl:for-each>
</ul>
</xsl:template>
</xsl:stylesheet>