尝试以下方法:
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:strip-space elements="*"/>
<!-- identity transform -->
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="table">
<xsl:copy>
<xsl:apply-templates select="thead"/>
<xsl:apply-templates select="tbody"/>
</xsl:copy>
<xsl:apply-templates select="tfoot"/>
</xsl:template>
<xsl:template match="tfoot">
<div class="footer">
<xsl:apply-templates select="tr/td/text()"/>
</div>
</xsl:template>
</xsl:stylesheet>
我不确定你到底想如何安排页脚的内容
div
; 你可能想用
xsl:for-each
在文本节点之间插入分隔符。
还要注意,这里的结果不是格式良好的XML,因为它没有单个根元素。