如何修改下面的xsl,以便在放置圖像的for-each循環中每個表格行放置2個圖像,而不是4個(它目前的功能)。針對每個循環和格式化表格行的XSLT
我相信它與mod功能有關?
我試圖將foreach兄弟循環分割到另一行,但只有第一個圖像顯示在第一行,其餘的顯示在第二行。
<xsl:for-each select="Finding">
<xsl:if test="FindingType = 'A'">
<xsl:variable name="nImage" select="count(Image)" />
<tr><td class="di"><table width="100%" class="findings">
<tr><td class="shade" colspan="4"><p class="g"><b>Finding</b></p></td></tr>
<xsl:for-each select="Image[position() mod 4 = 1]">
<tr><td width="25%" align="left" valign="top"><p class="g"><img src="{.}" height="128" width="128" hspace="12"/><br />
<xsl:value-of select="@Type" /><xsl:text> </xsl:text> <xsl:value-of select="@SubType" />
<xsl:if test="@Position != ''"> (<xsl:value-of select="@Position" />) </xsl:if><br /><br />
</p>
</td></tr>
<tr><xsl:for-each select=". | following-sibling::Image[position() < 4 and (position() mod 4 = 0 or position() mod 4 = 1 or position() mod 4 = 2)]">
<td width="25%" valign="top" align="left"><p class="g">
<xsl:if test="(string-length(following-sibling::Image/.) > 0)">
<img src="{following-sibling::Image/.}" height="128" width="128" hspace="12" />
</xsl:if>
<br />
<xsl:value-of select="following-sibling::Image/@Type" /> <xsl:text> </xsl:text>
<xsl:value-of select="following-sibling::Image/@SubType" />
<xsl:if test="following-sibling::Image/@Position != ''"> (<xsl:value-of select="following-sibling::Image/@Position" />) </xsl:if>
<br /><br /></p>
</td>
</xsl:for-each>
<xsl:if test="$nImage = 2">
<td width="25%" />
</xsl:if>
</tr>
這個問題是沒有辦法對待你的朋友... – 2011-03-04 20:32:49
好問題,+1。查看我的答案,獲取完整的解決方案並解釋必要的代碼重構。 – 2011-03-05 00:32:16
@Alejandro::) :) – 2011-03-05 00:33:21