这是HTML:
<html>
<div>
<div class="theheader">The first header</div>
</div>
<div class="thecontent">
<div class="col1">Col 1 </div>
<div class="col2">Col 2 </div>
</div>
<div class="thecontent">
<div class="col1">Col 3 </div>
<div class="col2">col 4 </div>
</div>
<div>
<div class="theheader">The second header</div>
</div>
<div class="thecontent">
<div class="col1">Col 5 </div>
<div class="col2">Col 6 </div>
</div>
<div class="thecontent">
<div class="col1">Col 7 </div>
<div class="col2">Col 8 </div>
</div>
</html>
这是XSL:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text" encoding="utf-8" omit-xml-declaration="yes" indent="no"/>
<xsl:template match="div[@class='theheader']" />
<xsl:template match="div[@class='thecontent']">
<xsl:value-of select="//div[@class='theheader']" /><xsl:text>: </xsl:text>
<xsl:value-of select="." />
<xsl:text> </xsl:text>
</xsl:template>
</xsl:stylesheet>
这是输出:
The first header: Col 1 Col 2
The first header: Col 3 col 4
The first header: Col 5 Col 6
The first header: Col 7 Col 8
期望的输出:
The first header: Col 1 Col 2
The first header: Col 3 col 4
The second header: Col 5 Col 6
The second header: Col 7 Col 8
怎么做? XSLT 1.0首选。
也尝试过:
<xsl:value-of select=".//div[@class='theheader']" /><xsl:text>: </xsl:text>
(//之前的点)并且不输出标题。谁能告诉我为什么? 编辑了这些例子,因为第一版太简化了。现在SO告诉我它的代码太多了。希望这个多余的文字有所帮助。
答案 0 :(得分:3)
您需要移动代码以从模板匹配&#34; theheader&#34;中输出标题。进入模板匹配&#34;内容&#34;相反,所以它重复。您还需要使用preceding-sibling
轴来获得所需的div。
试试这个XSLT
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text" encoding="utf-8" omit-xml-declaration="yes" indent="no"/>
<xsl:template match="div[@class='theheader']" />
<xsl:template match="div[@class='thecontent']">
<xsl:value-of select="preceding-sibling::div[div/@class='theheader'][1]/div" /><xsl:text>: </xsl:text>
<xsl:for-each select="div">
<xsl:value-of select="." />
</xsl:for-each>
<xsl:text> </xsl:text>
</xsl:template>
</xsl:stylesheet>
编辑:在回复您对theheader
可能更深层次的评论时,请尝试使用其中一个表达式
<xsl:value-of select="preceding-sibling::div[descendant::div/@class='theheader'][1]//div[@class='theheader']" />
<xsl:value-of select="preceding::div[@class='theheader'][1]" />