$(function(){ //首页tab切换 $(".gu_box_t ul li").each(function(index){ $(this).hover(function(){ $(this).addclass("on").siblings().removeclass("on"); $(".gu_news_more a").eq(index).show().siblings().hide(); $(".box_c1").eq(index).show().siblings().hide(); }) }); //脚部链接 selectoption($("#gu_select1")); selectoption($("#gu_select2")); selectoption($("#gu_select3")); function selectoption(objoption){ objoption.click(function(e){ $(this).find(".gu_selecta").show(); }); objoption.find("li").click(function(){ $(objoption).find(".gu_selected").text($(this).text()); }); } $(".gu_selecta ul li").click(function(){ $(".gu_selecta").hide(); }); $("body").click(function(e) { for(var i=1;i<=3;i++){ $(e.target).parent().attr("id")!="gu_select"+i&&!$("#gu_select"+i+" .gu_selecta").is(":hidden")?$("#gu_select"+i+" .gu_selecta").hide():""; } }); // 产品展示 $(".gu_sfmpro1 em").click(function(){ var odiv=$(this).parent().parent().find(".gu_sfmpro1_c"); if(odiv.css("display")=="none"){ $(this).addclass("on"); odiv.show() }else{ $(this).removeclass("on"); odiv.hide() } }); //在线咨询 $(".ly_q").click(function(){ if($(this).next(".ly_a").is(":hidden")){ $(this).next(".ly_a").show(); $(this).children(".ly_q_l").children("a").addclass("hover").end(); $(this).children(".ly_q_r").css("background","url(../images/ly_q_close.jpg) no-repeat left top").end(); }else if($(this).next(".ly_a").is(":visible")){ $(this).next(".ly_a").hide(); $(this).children(".ly_q_l").children("a").removeclass("hover").end(); $(this).children(".ly_q_r").css("background","url(../images/ly_q_open.jpg) no-repeat left top").end(); } }); tab($("#tab1")); function tab(objtab){ var oli=objtab.find(".tab_t ul li"); var otabcon=objtab.find(".tab_c"); oli.hover(function(){ var index=oli.index(this); $(this).addclass("on").siblings().removeclass("on"); otabcon.eq(index).show().siblings(".tab_c").hide(); }) } })