2013-05-06 152 views
0

我通讀了其他問題,答案似乎沒有起作用。下一個和上一個按鈕在我的引導程序傳送帶中不起作用。旅程重組.js文件並使用不同版本的jquery。沒有。任何幫助將不勝感激。旋轉木馬不在引導工作

<div class="container"> 
    <div class="row-fluid"> 
     <div class="span 12 pagination-centered"> 

      <div id="myCarousel" class="carousel slide"> 
        <!--Carousel Items--> 
           <div class="carousel-inner"> 
            <div class="active item"><img src="img/bfgn.png" height="300" width="300" alt="bfgn" /></div> 
             <div class="item"><img src="img/ft.png" height="300" width="300" alt="ft" /></div> 
           </div> 
        <!--Carousel Nav--> 
           <a class="carousel-control left" href="#myCarousel" data-slide="prev">&lsaquo;</a> 
           <a class="carousel-control right" href="#myCarousel" data-slide="next">&rsaquo;</a> 
     </div> 
     </div> 
    </div> 

下面是在結束我的JS名單:

<!-- Le javascript 
================================================== --> 
<!-- Placed at the end of the document so the pages load faster --> 
<script src="js/jquery-1.9.1.min.js"></script> 
<script src="js/bootstrap.js"></script> 
<script src="js/bootstrap-carousel.js"></script> 
<script src="js/bootstrap-alert.js"></script> 
<script src="js/bootstrap-modal.js"></script> 
<script src="js/bootstrap-dropdown.js"></script> 
<script src="js/bootstrap-scrollspy.js"></script> 
<script src="js/bootstrap-tab.js"></script> 
<script src="js/bootstrap-tooltip.js"></script> 
<script src="js/bootstrap-popover.js"></script> 
<script src="js/bootstrap-button.js"></script> 
<script src="js/bootstrap-collapse.js"></script> 
<script src="js/bootstrap-transition.js"></script> 
<script src="js/bootstrap-typeahead.js"></script> 
+0

你看看瀏覽器的控制檯,看看是否有任何錯誤? – ZimSystem 2013-05-06 13:33:16

回答

0

這是您的自定義JS?如果沒有,請嘗試刪除此代碼:

 
    script src="js/bootstrap.js" 

0

當你插入一個旋轉木馬,什麼告訴它是一個旋轉木馬,而不僅僅是一個隨機div你已經坐在?

你應該後立即添加此<div id="myCarousel" class="carousel slide"></div>(後基本上旋轉木馬代碼):

<script> 
$('.carousel').carousel(); 
</script> 

或者,如果你感覺有點創意,你可以這樣做:

<script> 
$('.carousel').carousel({ 
    interval: 4000 
}); 
</script> 

您可以將4000ms更改爲希望顯示每張幻燈片的時間。

我希望我出現了對你的幫助。如果沒有,請告訴我是否可以在下面的評論中以任何其他方式幫助您。