编程语言
首页 > 编程语言> > javascript – Bootstrap轮播转换和上一个/下一个按钮不起作用

javascript – Bootstrap轮播转换和上一个/下一个按钮不起作用

作者:互联网

我正在尝试实现twitter bootstrap carousel,它不能正常工作 – 它不会自动切换图像,而且上一个/下一个按钮不起作用.

我已经尝试按照Bootstrap Carousel Not Automatically SlidingBootstrap Carousel Not working的建议切换到jquery 1.7.1,但似乎没有任何帮助.

任何想法,将不胜感激.

<!DOCTYPE html>
<html>
    <head>
        <title>Slideshow Test</title>
        <link href="css/bootstrap.css" rel="stylesheet" type="text/css" />
        <script src="js/bootstrap.js"></script>
        <script src="js/jquery-1.7.1.min.js"></script>
        <script src="js/bootstrap-transition.js"></script>
    </head>
    <body>
        <div id="myCarousel" class="carousel slide" style="width:450px">
            <!-- Carousel items -->
            <div class="carousel-inner">
                <div class="item active"><img src="img/IMG_2.jpg"></div>                
                <div class="item"><img src="img/IMG_3.jpg"></div>
                <div class="item"><img src="img/IMG_1.jpg"></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>    
    </body>
</html>

您可以在www.abbymilberg.com/bootstrap查看它及其链接的文件.

解决方法:

在包含jquery.js之后应该包含bootstrap.js:

<script src="js/jquery-1.7.1.min.js"></script>
<script src="js/bootstrap.js"></script>

标签:jquery,javascript,twitter-bootstrap,carousel,slideshow
来源: https://codeday.me/bug/20190711/1434621.html