我有一个XSL文档,其中插入了可变数量的文章。我需要文章的背景颜色来交替 - “奇怪”然后“偶数”
<xsl:for-each select="newsletter/section/article">
<tr class="odd" style="background-color: #efefef;">
<td valign="top">
<xsl:element name="a">
<xsl:attribute name="href">
<xsl:value-of select="link" />
</xsl:attribute>
<img align="left" valign="top" width="110"
style="padding: 0 4px 4px 0; border:0;">
<xsl:attribute name="alt">
<xsl:value-of select="title" />
</xsl:attribute>
<xsl:attribute name="src">
<xsl:value-of select="img" />
</xsl:attribute>
</img>
</xsl:element>
</td>
<td valign="top" style="padding: 4px 4px 18px 0;">
<strong>
<xsl:element name="a">
<xsl:attribute name="href">
<xsl:value-of select="link" />
</xsl:attribute>
<xsl:value-of select="title"/>
</xsl:element>
</strong>
<br />
<xsl:value-of select="excerpt"/>
</td>
</tr>
</xsl:for-each>
我看过这篇文章:HTML table with alternating row colors via XSL
但我相信我的情况有所不同。我只需要在每次迭代时更改tr类。很抱歉奇怪的格式化,我似乎在浏览Chrome中的代码时遇到了问题。
答案 0 :(得分:8)
使用:
<xsl:for-each select="newsletter/section/article">
<xsl:variable name="vColor">
<xsl:choose>
<xsl:when test="position() mod 2 = 1">
<xsl:text>#efefef</xsl:text>
</xsl:when>
<xsl:otherwise>#ababab</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<tr class="odd" style="background-color: {$vColor};">
答案 1 :(得分:2)
<xsl:for-each select="date">
<tr>
<xsl:if test="position() mod 2 = 1">
<xsl:attribute name="class">odd</xsl:attribute>
<xsl:attribute name="style">background-color: #efefef;"
</xsl:attribute>
</xsl:if>
<td valign="top">
<a href="{link}">
<img align="left" valign="top" width="110"
style="padding: 0 4px 4px 0; border:0;"
alt="{title}"
src="{img}"/>
</a>
</td>
<td valign="top" style="padding: 4px 4px 18px 0;">
<strong>
<a href="{link}">
<xsl:value-of select="title"/>
</a>
</strong>
<br />
<xsl:value-of select="excerpt"/>
</td>
</tr>
</xsl:for-each>
答案 2 :(得分:0)
在除以2时使用position()
和余数。
答案 3 :(得分:0)
你的情况非常相似。你应该做的是根据位置定义一个类名。 @Jim Garrison给你提供了很好的提示,但我认为这个例子是必要的,因为在你引用的例子中有position()
的例子,并且问了这个问题。
<xsl:for-each select="newsletter/section/article">
<!-- create index-based variable -->
<xsl:variable name="classname">
<xsl:choose>
<xsl:when test="position() mod 2 = 0">
<xsl:text>even</xsl:text>
</xsl:when>
<xsl:otherwise>
<xsl:text>odd</xsl:text>
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<!-- insert contents of your variable -->
<tr class="{$classname}" style="background-color: #efefef;">
....