1

我正在嘗試將自舉3傳送帶實施到我的網站中,但是左右兩側的幻燈片按鈕無法正常工作,幻燈片點也是如此。任何人都可以在我的代碼中發現問題嗎?Twitter Bootstrap傳送帶按鈕無法正常工作

<!doctype html> 
<html> 
<head> 
    <script src="//code.jquery.com/jquery-1.11.2.min.js"></script> 
    <script type="text/javascript" scr="js/bootstrap.js"></script> 
    <link rel="stylesheet" type="text/css" href="css/bootstrap.css"> 
    <title>Test page! </title> 
</head> 


<body> 
<div id="carousel-example-generic" class="carousel slide" data-ride="carousel"> 
    <!-- Indicators --> 
    <ol class="carousel-indicators"> 
    <li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li> 
    <li data-target="#carousel-example-generic" data-slide-to="1"></li> 
    </ol> 

    <!-- Wrapper for slides --> 
    <div class="carousel-inner" role="listbox"> 
    <div class="item active"> 
     <img src="img/deepcleaning1.jpg" alt="deepcleaning"> 
    </div> 
    <div class="item"> 
     <img src="img/deepcleaning2.jpg" alt="deepcleaning2"> 
    </div> 
    </div> 

    <!-- Controls --> 
    <a class="left carousel-control" href="#carousel-example-generic" role="button" data-slide="prev"> 
    <span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span> 
    <span class="sr-only">Previous</span> 
    </a> 
    <a class="right carousel-control" href="#carousel-example-generic" role="button" data-slide="next"> 
    <span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span> 
    <span class="sr-only">Next</span> 
    </a> 
</div> 

</body> 
</html> 
+0

你能發佈小提琴太 – Kushal

+0

你可以試試這個''''''有一個機會,它沒有找到你的方式引用 –

+0

檢查控制檯錯誤的方式一旦!!! –

回答

0

聽起來像一個類似的問題:Bootstrap Carousel does not work

有建議檢查的JavaScript錯誤,特別是鏈接到jQuery的答案。似乎將http或https添加到URL可以解決問題。

<script src="http://code.jquery.com/jquery-1.11.2.min.js"></script> 

<script src="https://code.jquery.com/jquery-1.11.2.min.js"></script> 
0

原來,由於某種原因jQuery的鏈接不工作......我所做的只是下載jQuery的文件,並鏈接到它,而不是使用API​​的。奇蹟般有效。

不知道爲什麼鏈接沒有工作對我來說,雖然...