我在我的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"} ›
答案 0 :(得分:0)
发现此解决方案对我有用:
https://stackoverflow.com/questions/9353294/bootstrap-carousel-not-working
在我的标题中使用它:
<script>
$(function(){
$('#myCarousel').carousel();
});
</script>