$(function(){ $(".tab-title li").eq(0).addclass("on"); $(".tab-con .list-news").eq(0).show(); $(".tab-title li").click(function(){ $(this).addclass("on").siblings().removeclass("on"); var index1 = $(this).index(); var $pare = $(this).parent().parent(); $pare.find(".list-news").eq(index1).show().siblings(".list-news").hide(); }); }) $(function(){ $(".tab-title1 div").eq(0).addclass("on"); $(".tab-con1 .list-news1").eq(0).show(); $(".tab-title1 div").click(function(){ $(this).addclass("on").siblings().removeclass("on"); var index1 = $(this).index(); var $pare = $(this).parent().parent(); $pare.find(".list-news1").eq(index1).show().siblings(".list-news1").hide(); }); }) //顶部搜索手机版用到 $(function(){ $(".top_menu").click(function(){ $(".mainnav-xs").slidetoggle("fast"); $(this).toggleclass("ms"); }) })