87,964
社区成员
发帖
与我相关
我的任务
分享
$(".changes").click(function(){
pages = $(".hot24 ul li").length;
index = 0;
if(index < pages){
index++;
}else{
index = 0;
}
$(this).eq(index).show().siblings().hide();
})
var index = 0;
$(".changes").click(function(){
pages = $(".hot24 ul li").length;
if(index < pages){
index++;
}else{
index = 0;
}
$(".hot24 ul li").eq(index).show().siblings().hide();
})
$(".changes").click(function(){
pages = $(".hot24 ul li").length;
index = 0;
if(index < pages){
index++;
}else{
index = 0;
}
$(".hot24 ul li").eq(index).show().siblings().hide();
})
楼主要这个效果?
$(".hot24 ul li").eq(index).show().siblings().hide();