在使用swiper时,解决同一个页面使用多个轮播出现问题做法

时间:2021-09-11 22:30:28
$(".swiper-container").each(function(){
    $(this).swiper({
	        loop: true,
	        initialSlide :0,
	        pagination:$('.swiper-pagination',this),
	        nextButton: $('.arrow-right',this),
	        prevButton:$('.arrow-left',this),
	        pagination: $('.swiper-pagination',this),	    
		    // 如果需要前进后退按钮
		nextButton: $('.swiper-button-next',this),
		prevButton: $('.swiper-button-prev',this),
     });
});