我正在项目中使用Bootstrap和Bootstrap Carousel.
我想知道是否有任何方法可以让Carousel导航到特定的幻灯片.
例如,类似于:
$('myCarousel').to(2);
有人知道这样做的方法吗?
从文档:
.carousel(number) Cycles the carousel to a particular frame (0 based,
similar to an array).
所以我认为它应该是:
$('myCarousel').carousel(2);
原文链接:https://www.f2er.com/js/154980.html