$(function () { // tab选项卡 $(".list_select .select").hover(function () { $(this).addclass("active").siblings().removeclass("active"); var index = $(this).index(); $(".tab_list .products_list_content").eq(index).addclass("active").siblings().removeclass("active"); }) // 左箭头 $(".tab_left").click(function () { var index = $('.list_select .select.active').index(); index--; if (index < 0) { index = 7; } console.log(index); $(".list_select .select").eq(index).addclass("active").siblings().removeclass("active"); $('.tab_list .products_list_content').eq(index).addclass("active").siblings().removeclass("active "); }); // 右箭头 $(".tab_right").click(function () { var index = $('.list_select .select.active').index(); index++; if (index >= 8) { index = 0; } console.log(index); $(".list_select .select").eq(index).addclass("active").siblings().removeclass("active"); $('.tab_list .products_list_content').eq(index).addclass("active").siblings().removeclass("active "); }); }) $(function () { $('.list_select').children().eq(0).addclass("active"); $('.tab_list .products_list_content').eq(0).addclass("active"); })