+function(){ //主体第一部分中间的切换效果 $(".main1-m-t>div").mouseenter(function(){ $(".main1-m-t>div").removeclass("div-hover1"); $(this).addclass("div-hover1"); var dd=this.id+1; $(".main1-m-b").removeclass("show"); $("#"+dd).addclass("show"); }); $(".main1-r-t>div").mouseenter(function(){ $(".main1-r-t>div").removeclass("on"); $(this).addclass("on"); var dd=this.id+1; $(".main1-r-b").removeclass("show"); $("#"+dd).addclass("show"); }); //栏目上hover变色功能 $(".lists").mouseenter(function(){ $(this).children("b").css("color","#256c9b"); $(this).children("span").css("color","#256c9b"); }); $(".lists").mouseleave(function(){ $(".lists").children("b").css("color","#666"); $(".lists").children("span").css("color","#888"); }); //产品中心切换效果 $(".m2>div").mouseenter(function(){ $("#a11").attr("id","a1"); $("#a21").attr("id","a2"); $("#a31").attr("id","a3"); aaa=$(this).attr("id"); aaaa=aaa+1; $(this).attr("id",aaaa); }) }();