0

我无法弄清楚如何将 for-each 的内容包装在 div 中,其中每个 div 包含 4 个元素。

下面,您会发现我的 XSLT 的简化版本:

  <xsl:template match="/">
        <div class="container"><!-- have to be repeated for every 4 elements from the for-each -->
          <xsl:for-each select="$currentPage/GalleriListe/descendant::* [@isDoc] [not(self::GalleriListe)]">
              <div>...</div>
          </xsl:for-each>
        </div>
  </xsl:template>

有任何想法吗?谢谢!

4

1 回答 1

1

您没有发布您的 XML,因此我使用了简化的 XML 来回答这个问题。这有点hacky,可能有更优雅的方式。您可以在此 XMLPlayground 会话中对其进行测试

<!-- declare how many items per container -->
<xsl:variable name='num_per_div' select='4' />

<!-- root - kick things off -->
<xsl:template match="/">
    <xsl:apply-templates select='root/node' mode='container' />
</xsl:template>

<!-- iteration content - containers -->
<xsl:template match='node' mode='container'>
    <xsl:if test='position() = 1 or not((position()-1) mod $num_per_div)'>
        <div>
            <xsl:variable name='pos' select='position()' />
            <xsl:apply-templates select='. | following-sibling::*[count(preceding-sibling::node) &lt; $pos+(number($num_per_div)-1)]' />
        </div>
    </xsl:if>
</xsl:template>

<!-- iteration content - individual items -->
<xsl:template match='node'>
    <p><xsl:value-of select='.' /></p>
</xsl:template>
于 2012-06-27T20:38:23.423 回答