Bootstrap Carousel Not Automatically Sliding

前端 未结 5 1839
日久生厌
日久生厌 2020-12-15 22:49

I\'m using bootstrap by Twitter\'s carousel (latest version) and I\'ve got it working - except that it doesn\'t begin to automatically slide. It works well after you\'ve cli

5条回答
  •  死守一世寂寞
    2020-12-15 23:50

    Sometimes using the wrong version of JQuery can effect the actions of the Twitters Boostrap carousel. They are currently running v1.7.1, if your using different it may be causing the errors.

    If your not running v1.7.1 you can download it from here:

    http://code.jquery.com/jquery-1.7.1.min.js

    Also make sure that your code is wrapped in a document ready :

      $(document).ready(function () {
          // code here
      });
    

提交回复
热议问题