javascript – 如何告诉Bootstrap Carousel转到特定索引?

前端之家收集整理的这篇文章主要介绍了javascript – 如何告诉Bootstrap Carousel转到特定索引?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在项目中使用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

猜你在找的JavaScript相关文章