I have to use multiple bootstrap carousel in single page.If i am using different id for each carousel its possible. But I want use same class or id..it is possible?I have tried like this $('.myCarousel').carousel();

有帮助吗?

解决方案

Try this:

$(document).ready(function() {
  $('.carousel').each(function(){
      $(this).carousel({
          interval: 3000
      });
   });
});

http://jsfiddle.net/7DLyk/4/

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top