Mat*_*ima 6 javascript jquery carousel twitter-bootstrap
我正在项目中使用Bootstrap和Bootstrap Carousel.
我想知道是否有任何方法可以让Carousel导航到特定的幻灯片.
例如,类似于:
$('myCarousel').to(2);
Run Code Online (Sandbox Code Playgroud)
有人知道这样做的方法吗?
mat*_*tma 15
从文档:
.carousel(number)将轮播循环到特定帧(基于0,类似于数组).
所以我认为它应该是:
$('myCarousel').carousel(2);
Run Code Online (Sandbox Code Playgroud)