如何在 Twitter 引导轮播页面加载后隐藏左按钮?
http://twitter.github.com/bootstrap/javascript.html#carousel
我的尝试(它在第一个 Action 后起作用,我需要所有时间):
$('#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();
}
});
最佳答案
只需在页面加载后隐藏左按钮。因为它总是从第一张幻灯片开始。
$('#myCarousel > .left.carousel-control').hide();
或者,在页面加载后手动触发
slid
事件。$('#myCarousel').on('slid', '', function () {
...
}).trigger('slid');
关于javascript - 如何在 Twitter 引导轮播页面加载后隐藏左按钮?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14925043/