一个网页有多处轮播图的时候,我发现我的索引值有冲突,不知道该怎么改,求帮忙 ,第二部分的我是仿照第一部分修改的
[JavaScript] 纯文本查看 复制代码 var spanList = $(".ban_num_con span");
var aList = $(".tr_ban_img a");
var index = 0;
function tr(index) {
spanList.removeClass();
$(spanList[index]).addClass("on");
aList.stop().fadeOut(300);
$(aList[index]).stop().fadeIn(300);
}
spanList.click(function () {
index = $(this).index();
tr(index);
})
var time = setInterval(function () {
index++;
index = index >= aList.length ? 0 : index;
tr(index);
}, 4000)
[JavaScript] 纯文本查看 复制代码 var yxLi = $(".stategy_tab ul li");
var yxStat = $(".stategy_con");
var yxindex = 0;
function yx(yxindex) {
yxLi.removeClass();
$(yxLi[yxindex]).addClass("on");
yxStat.stop().fadeOut(0);
$(yxStat[yxindex]).stop().fadeIn(300);
}
yxLi.mouseenter(function () {
yxindex = $(this).index();
yx(yxindex);
})
var time = setInterval(function () {
yxindex++;
yxindex = yxindex >= yxStat.length ? 0 : yxindex;
yx(yxindex);
}, 4000)
|