var t = 0;var _id;function categoryCarousel (t){
$(".title li").eq(t).stop().addClass('cur').siblings().removeClass('cur'),
_id = $(".title li").eq(t).attr('id'); var showUl = $("#" + _id + "list ");
showUl.stop().show().siblings("ul").hide();
$("#" + _id + "list .line").show();
}$(document).on('click', '#next', function () { if (t > 3 ) {
t = -1;
};
categoryCarousel (++t); console.log(t)
});
$(document).on('click', '#pre', function () { if (t < 0) {
t = 3;
};
categoryCarousel (--t) console.log(t)
});
1 回答
慕田峪7331174
TA贡献1828条经验 获得超13个赞
添加回答
举报
0/150
提交
取消