In the bootstrap carousel plug-in, how to trigger events when the carousel reaches the first and last one
業(yè)精于勤,荒于嬉;行成于思,毀于隨。
Resolved
Quote http://www.cnblogs.com/zuoyif...
$('#myCarousel').on('slide.bs.carousel', function (event) {
var $hoder = $('#myCarousel').find('.item'),
$items = $(event.relatedTarget);
//getIndex就是輪播到當(dāng)前位置的索引
var getIndex= $hoder.index($items);
});