我无法弄清楚如何将 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>
有任何想法吗?谢谢!