
var pageSwiper;
var tlidIndex = 0;
function swipers(){
pageSwiper = new Swiper('.swiper-container2', {
paginationClickable: true,
uniqueNavElements :false,
autoHeight:'auto',
onSlideChangeStart: function(swiper){
$('.testanalysisbox').empty();
pageSwiper.update(); //当有内容不确定时 这个是重新渲染
tlidIndex = swiper.realIndex;
$('[data-role="examansweregbox"] span').eq(swiper.activeIndex).addClass('active').siblings().removeClass('active');
}
});
}
// 点击绿色按钮切换
$('[data-role="examanswerlist"]').on('click', 'span.clickSlide', function() {
let index = $(this).text().trim() - 1;
pageSwiper.slideTo(index);
})