Twitter bootstrap 引导转盘中的转盘指示器在Sharepoint中不工作

Twitter bootstrap 引导转盘中的转盘指示器在Sharepoint中不工作,twitter-bootstrap,sharepoint,carousel,Twitter Bootstrap,Sharepoint,Carousel,我正在将引导转盘输入Sharepoint内容查询Web部件。它工作得很好,因为Web部件正在从SharePoint中的自定义列表中引入数据(多亏了这一点),但是旋转木马指示器不起作用。请注意,横幅两侧的“下一个”和“上一个”按钮都在工作 有人看到这段代码有什么问题吗 <div id="bootstrap-carousel" class="carousel slide" data-ride="carousel"> <ol class="carousel-indicators"&

我正在将引导转盘输入Sharepoint内容查询Web部件。它工作得很好,因为Web部件正在从SharePoint中的自定义列表中引入数据(多亏了这一点),但是旋转木马指示器不起作用。请注意,横幅两侧的“下一个”和“上一个”按钮都在工作

有人看到这段代码有什么问题吗

<div id="bootstrap-carousel" class="carousel slide" data-ride="carousel">

<ol class="carousel-indicators">
 <xsl:for-each select="$Rows">
 <xsl:variable name="position">
 <xsl:value-of select="position()"/>
 </xsl:variable>
 <xsl:choose>
 <xsl:when test="position() = 1">
 <li class="active" data-target="#bootstrap-carousel" data-slide-to="{$position}"></li>
 </xsl:when>
 <xsl:otherwise>
 <li data-target="#bootstrap-carousel" data-slide-to="{$position}"></li>
 </xsl:otherwise>
 </xsl:choose>
 </xsl:for-each>
 </ol>
<div class="carousel-inner" role="listbox">
  <xsl:for-each select="$Rows">
  <xsl:call-template name="OuterTemplate.CallItemTemplate"/>
 </xsl:for-each>
 </div>



 <a class="left carousel-control" href="#bootstrap-carousel" role="button" data-slide="prev"><span class="fa fa-chevron-left"> </span></a>
  <a class="right carousel-control" href="#bootstrap-carousel" role="button" data-slide="next"><span class="fa fa-chevron-right"> </span></a>


 </div>