我正在使用以下 XSLT:
https://gist.github.com/4402884
以下模板执行转换以呈现 html 输出,如下所示:
<li>
<div class="content-left" style="float:left; width:300px"> content </div>
<div class="content-left" style="float:left; width:300px">content </div>
</li>
<li>
<div class="content-left" style="float:left; width:300px"> content </div>
<div class="content-left" style="float:left; width:300px">content </div>
</li>
.
.
.
等等.. 实际的 XSLT 完成了这样的工作以获得两列布局:
A-----B
C-----D
E-----F
其中每一行都是一个'li'项目
<xsl:choose>
<xsl:when test="$CurPos mod 2 =1">
<xsl:text disable-output-escaping="yes"><li style="width:610px; height:290px; "></xsl:text>
<div class="content-left" style="width:290px; height:290px;float:left;">
<xsl:value-of select="@PublishingRollupImage" disable-output-escaping="yes" />
<span class="NewsHeading"><h4><xsl:value-of select="$CurPos"/><xsl:value-of select="@Title"/></h4></span>
<span class="Desc" style="display:block; width:280px;"><xsl:value-of select="substring(@Comments,0,200)"/>
<xsl:if test="string-length(@Comments) > 200">…</xsl:if><a href="{$SafeLinkUrl}" class="ReadMore"> Read More</a></span>
</div>
<div class="content-right" style="float:right; width:290px; height:290px;">
<xsl:if test="$CurPos != $LastRow ">
<xsl:value-of select="following-sibling::*[1]/@PublishingRollupImage" disable-output-escaping="yes" />
<span class="NewsHeading"><h4><xsl:value-of select="$LastRow"/><xsl:value-of select="following-sibling::*[1]/@Title"/></h4></span>
<span class="Desc" style="display:block; width:280px;"><xsl:value-of select="substring(following-sibling::*[1]/@Comments,0,200)"/>
<xsl:if test="string-length(following-sibling::*[1]/@Comments) > 200">…</xsl:if>
<a href="{$SibSafeLinkUrl}" class="ReadMore"> Read More</a></span>
</xsl:if>
</div>
</xsl:when>
<xsl:otherwise>
<xsl:text disable-output-escaping="yes"></li></xsl:text>
</xsl:otherwise>
</xsl:choose>
可悲的是,然而 Inernet Explorer 会产生不必要的自封闭标签(仅 IE),FF 和 chrome 会正确呈现它......
<li>
<div class="content-left" style="float:left; width:300px"> content </div>
<div class="content-left" style="float:left; width:300px">content </div>
</li></li/></li/>
<li>
<div class="content-left" style="float:left; width:300px"> content </div>
<div class="content-left" style="float:left; width:300px">content </div>
</li></li/></li/>
我如何摆脱那些不需要的自我封闭奇怪的“li”标签?因为我需要确切的 html 结构才能使 jquery 滑块插件工作,因为不需要的标签,滑块行为不端。
这是在 IE 中: IE http://www.imagesup.net/?di=9135673644516
这是在 FireFox 中: FF http://www.imagesup.net/?di=11135673652612