$(document).ready(function(){ $('.show-con').hide(); $('.show-con').eq(0).show() $('.show-tag li').click( function(){ $(this).addClass('active').siblings().removeClass('active'); var ind=$(this).index(); $('.show-con').hide(); $('.show-con').eq(ind).show(); }) $('.tab-li li').click( function(){ $(this).addClass('on').siblings().removeClass('on'); var ind=$(this).index(); $('.tab_con').eq(ind).fadeIn().siblings().hide(); }) $('.wxtab').mouseover( function(){ $(this).addClass('on').siblings().removeClass('on'); var ind=$(this).index(); $('#weibo-c .wx-con').eq(ind).show().siblings().hide(); }) $('#navlist li').hover( function(){ //$(this).find("span").hide(); $(this).addClass('active').siblings().removeClass('active'); $("#navlist .item").hide(); $(this).find(".item").show(); },function(){ $(this).removeClass('active'); $("#navlist .item").hide();}) // $(this).find("span").show(); })