Twitter引导轮播中页面加载后如何隐藏左键?
http://twitter.github.com/bootstrap/javascript.html#carousel
我的尝试(它在第一次行动后起作用,我需要所有时间):
$('#myCarousel').on('slid', '', function() {
var $this = $(this);
$this.children('.carousel-control').show();
if($('.carousel-inner .item:first').hasClass('active')) {
$this.children('.left.carousel-control').hide();
}
else if($('.carousel-inner .item:last').hasClass('active')) {
$this.children('.right.carousel-control').hide();
}
});