$(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(); })