0

我正在使用以下 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">&lt;li style=&quot;width:610px; height:290px; &quot;&gt;</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) &gt; 200">…&lt;/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) &gt; 200">…&lt;/xsl:if>
                <a href="{$SibSafeLinkUrl}" class="ReadMore"> Read More</a></span>
            </xsl:if>
        </div>
    </xsl:when> 
    <xsl:otherwise>
         <xsl:text disable-output-escaping="yes">&lt;/li&gt;</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

4

1 回答 1

3

我不确定这是否能解决您的问题,但我强烈考虑重新调整您的 xsl:choose 语句。我猜您正在使用禁用输出转义,因为如果您尝试像以下示例那样编写 XSLT,它将不是格式正确的 XML,因此无效。(为简洁起见,我删减了代码示例)。

<xsl:choose>
    <xsl:when test="$CurPos mod 2 =1">
       <li>  
       <div class="content-left">
           <xsl:value-of select="@PublishingRollupImage" />
        </div>
        <div class="content-right">
           <xsl:value-of select="following-sibling::*[1]/@PublishingRollupImage" />
        </div>
    </xsl:when> 
    <xsl:otherwise>
         </li>
    </xsl:otherwise>
</xsl:choose>

您要实现的是将成对的元素组合在一起,因此您选择位置 1、3、5 等的元素,然后输出该元素和下一个元素。

为了避免使用禁用输出转义,您可以做的是像这样重写它。

<xsl:if test="$CurPos mod 2 =1">
   <li>  
      <div class="content-left">
         <xsl:value-of select="@PublishingRollupImage" />
      </div>
      <div class="content-right">
         <xsl:value-of select="following-sibling::*[1]/@PublishingRollupImage" />
      </div>
   </li>
</xsl:if>

现在格式正确,直接输出li元素。无论这是否解决了您的问题,这可能都是值得的。

于 2012-12-29T17:17:49.580 回答