/** * created by administrator on 2016/8/16 0016. */ $(function(){ $(".contact_info .icon li").hover(function(){ $(this).children(".codebox").show(); },function(){ $(this).children(".codebox").hide(); }); $(".knowledgeinfo .part").eq(0).show() $(".knowledgetitle ul li").click(function(){ var index = $(this).index(); $(this).children("a").addclass("active"); $(this).siblings("li").children("a").removeclass("active"); $(".knowledgeinfo .part").eq(index).show().siblings(".part").hide(); }); })