选择奇数<PackageInfo>
元素,像这样
<xsl:for-each select="$datapath/PackageInfoList/PackageInfo[position() mod 2 = 1]">
<div>
<!-- lots of html in here -->
<!-- do something with following-sibling::PackageInfo[1] -->
</div>
</xsl:for-each>
这将针对位置 1、3、5 等处的元素运行。<PackageInfo>
手动处理相应的第一个后续。
更地道
<xsl:template match="/">
<xsl:apply-templates select="$datapath/PackageInfoList/PackageInfo" mode="group2" />
</xsl:template>
<xsl:template match="PackageInfo" mode="group2">
<xsl:if test="position() mod 2 = 1">
<div>
<xsl:apply-templates select=". | following-sibling::PackageInfo[1]" />
</div>
</xsl:if>
</xsl:template>
<xsl:template match="PackageInfo">
<!-- lots of html in here -->
</xsl:template>
更灵活
<xsl:template match="/">
<xsl:apply-templates select="$datapath/PackageInfoList/PackageInfo" mode="group">
<xsl:with-param name="groupcount" select="2" />
</xsl:apply-templates>
</xsl:template>
<xsl:template match="PackageInfo" mode="group">
<xsl:param name="groupcount" select="2" />
<xsl:if test="position() mod $groupcount = 1">
<div>
<xsl:apply-templates select=". | following-sibling::PackageInfo[position() < $groupcount]" />
</div>
</xsl:if>
</xsl:template>
<xsl:template match="PackageInfo">
<!-- lots of html in here -->
</xsl:template>