$.ajax({? url:'攻略推薦',
??success:function(res){
????console.log(res);
????var?arr=?res.data;? ? var?str='';? ?var?str2='';
????arr.forEach(fun (e){
??????str+=` 一個(gè)叫shou_image的li `
????str2+=` 一個(gè)叫show_nav的li `? ? });
????$('.show-image').html(str);? ? ? $('.show-nav').html(str2);
????$('.show-image?li').eq(current).show();? ? ?$('.show-nav?li').eq(current).addClass('active');
??}
})? var?current=2;
//自動(dòng)輪播
setInterval(()?=>?{
??var?imgs=$('.show-image?li');? ? var?navs=$('.show-nav?li')
??current=++current%?imgs.length;
??imgs.eq(curr).fadeIn(300).sib().fadeOut(300);
??navs.eq(curr).add('active').sib().rem('active');? },?3000);
//手動(dòng)點(diǎn)擊
$('ul.show-nav').on('click','li',function(){
??current=$(this).index();
??var?imgs=$('.show-image?li');
??imgs.eq(cur).fadeIn(300).sib().fadeOut(300);
??navs.eq(curr).add('active').siblings().rem('active');
})