$(function(){ //tab切换 settab($("#tabsev")); function settab(obj){ var title=obj.find(".js_tab_t ul li"); var con=obj.find(".js_tab_c1"); title.hover(function(){ var indexthis=title.index(this); $(this).addclass("on").siblings().removeclass("on"); con.eq(indexthis).show().siblings(".js_tab_c1").hide(); }) } $(".xwdtlboxl > img[src='']").parent().hide().next("div").css("width","620px"); //导航 $(".nav_c a").each(function(index){ $(this).mouseover(function(){ $(this).addclass("on"); $($(".sub_nav_c")[index]).show(); }).mouseout(function(){ $(".nav_c a").removeclass("on"); $($(".sub_nav_c")[index]).hide(); }); }); $(".sub_nav_c").each(function(index){ $(this).mouseover(function(){ $(this).show(); $($(".nav_c a")[index]).addclass("on"); }).mouseout(function(){ $(this).hide(); $($(".nav_c a")[index]).removeclass("on"); }); }); // 首页 settab($("#js_tabnews")); settab($("#js_tabbusine")); function settab(obj){ var oli=obj.find($(".js_tab_t li")); var ocon=obj.find($(".js_tab_c1")); var omore=obj.find($(".js_more a")); oli.hover(function(){ var index=oli.index(this); $(this).addclass("on").siblings().removeclass("on"); ocon.eq(index).show().siblings(".js_tab_c1").hide(); omore.eq(index).show().siblings(".js_more a").hide(); }) } // $(".gu_conceptbox em").click(function(){ if($(this).hasclass("gu_arrowdown")){ $(this).removeclass("gu_arrowdown").addclass("gu_arrowup"); $(this).parent().children(".gu_hide").show().siblings(".gu_show").hide(); }else{ //$(".gu_conceptbox em").addclass("gu_arrowdown").removeclass("gu_arrowup"); //$(".gu_conceptbox li").children(".gu_show").show().siblings(".gu_hide").hide(); $(this).removeclass("gu_arrowup").addclass("gu_arrowdown"); $(this).parent().children(".gu_show").show().siblings(".gu_hide").hide(); } }) //热点问题 $(".btn_more").click(function(event) { if($(this).hasclass("kong_arrowdown")){ $(this).removeclass("kong_arrowdown").addclass("kong_arrowup"); $(this).children('span').text('收起'); $(this).parent().children(".kong_hide").show().siblings(".kong_show").hide(); }else{ //$(".gu_conceptbox em").addclass("gu_arrowdown").removeclass("gu_arrowup"); //$(".gu_conceptbox li").children(".gu_show").show().siblings(".gu_hide").hide(); $(this).removeclass("kong_arrowup").addclass("kong_arrowdown"); $(this).parent().children(".kong_show").show().siblings(".kong_hide").hide(); $(this).children('span').text('查看更多'); } }); /*guruqin0804*/ set($("#yearesbox")); set($("#yearesbox1")); function set(obj){ var yearnum = 0; var yearul = $('.js_gu_datecon ul'); var yearli =$('.js_gu_datecon ul li'); var oboxitem=$(".js_gu_item"); var yearli_len = $('.js_gu_datecon ul li').length; var year_width = $('.js_gu_datecon ul li').width(); yearul.width(yearli_len * year_width); var btnprev=$('.js_btnprev'); var btnnext=$('.js_btnnext'); obj.find($(".js_gu_datecon li")).click(function(){ var index=$(this).index(); $(this).addclass("on").siblings().removeclass("on"); obj.find(".js_gu_item").eq(index).show().siblings().hide() }); obj.find(btnnext).click(function() { if (yearli_len < 7 || yearnum >= yearli_len - 7) { return false; } yearnum++; yearul.animate({left: '-=' + year_width + 'px'}, 'fast'); if (yearnum==yearli_len) { yearnum=0; }; }); obj.find(btnprev).click(function() { if (yearnum <= 0) { return false; } yearnum--; yearul.animate({left: '+=' + year_width + 'px'}, 'fast'); if (yearnum<0) { yearnum=yearli_len; }; }); }; })