0
我在解決如何在div中包含for-each的內容時遇到問題,其中每個div都包含4個元素。包裝一個for-each在div中的每個第n個元素
下面,你會發現我的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>
任何想法? 謝謝!
測試這個問題是不是沒有源XML文檔的完整(但儘可能小)例如太有意義和準確的希望的結果。請編輯問題並添加這些必要的信息 - 不要強迫有意向的人猜測實際給出的內容以及實際需要的內容。 –