/** * created by win7 on 2019/6/3. */ $(function(){ $("#page_bg").css("height",$(window).height()+"px"); //导航 $("#menu_li>li").hover(function(){ $("#menu_li").find("ol").hide(); $("#menu_li>li").removeclass("hoverlist"); $(this).addclass("hoverlist"); $(this).children("ol").show(); },function(){ $("#menu_li>li").removeclass("hoverlist"); $("#menu_li").find("ol").hide(); $(this).find(".three_menu ol").hide(); }); $(".three_menu").hover(function(){ $(this).find("ol").show(); }, function(){ $(this).find("ol").hide(); }) });