jquery换一批的写法详解编程语言

jquery换一批的写法


<img src="{$yuming}/images/3/huanyipi.png" alt="" currentindex="1" count="3" class="huanyipi">


$('.huanyipi').on('click',function () {
var currentindex=parseInt($(this).attr('currentindex'));
var count=parseInt($(this).attr('count'));
currentindex++;
if(currentindex>count){
currentindex=1;
}
$(this).attr('currentindex',currentindex);
$('.bufenlist').css('display','none');
$('.bufen'+currentindex).fadeIn();
})

点一次一次currentindex+1 来判断 就行了

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/18838.html

(0)
上一篇 2021年7月19日
下一篇 2021年7月19日

相关推荐

发表回复

登录后才能评论