$(function(){ /*二级导航*/ $(".nav_yj>li").mouseenter(function(){ $(".nav_yj>li").removeClass("prev"); $(".nav_yj>li").removeClass("on"); $(this).addClass("on"); // $(this).prev("li").addClass("prev"); $(".nav_yj>li>.nav_ej").hide(); $(this).children(".nav_ej").show(); }); $(".nav_yj>li").mouseleave(function(){ // $(".nav_yj>li").removeClass("prev"); $(".nav_yj>li").removeClass("on"); $(".nav_ej").hide(); }); //pc搜索 $(".sea_open").click(function () { $(".search form").show(); $(".search form").animate( { right: "0px" }, 800 ) $(".sea_close").show(); }); $(".sea_close").click(function () { $(".search form").animate( { right: "-460px", display: "none" }, 800 ); $(this).hide(); }); //list新闻列表左侧选择 var _href=window.location.pathname; var h2 = $(".box>.list_item_th>.local>a:last-child").attr("href"); $(".menu>ul>li").each(function(){ var h = $(this).children("a").attr("href"); var h3="http://"+ window.location.host + h; /*alert(h3);*/ if(_href==h || h3==h2 ){ $(".menu>ul>li").removeClass("on"); $(this).addClass("on"); } }); $(".tzgg>ul>li:last").css("height","56px"); });