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) });
慕田峪7331174
相关分类