Rails中的Bootstrap Carousel突然停止工作

时间:2012-08-05 00:10:13

标签: ruby-on-rails-3 twitter-bootstrap

我在我的rails应用程序中的旋转木马工作到不久前,现在下一个和前一个按钮不起作用。没有对此视图或CSS中的轮播进行任何更改。

这是我的代码:

.carousel.slide#myCarousel
 .carousel-inner
  .active.item
    =image_tag("/assets/1.jpg")
    .carousel-caption
      %h4 Caption
  .item
    =image_tag("/assets/2.jpg")
    .carousel-caption
      %h4 Caption
  .item
    =image_tag("/assets/3.jpg")
    .carousel-caption
      %h4 Caption

 %a.carousel-control.left{"data-slide" => "prev", :href => "#myCarousel"} ‹
 %a.carousel-control.right{"data-slide" => "next", :href => "#myCarousel"} ›

1 个答案:

答案 0 :(得分:0)

发现此解决方案对我有用:

https://stackoverflow.com/questions/9353294/bootstrap-carousel-not-working

在我的标题中使用它:

<script>
$(function(){
  $('#myCarousel').carousel();
});
</script>