$(function(){ $(".first").eq(0).addClass("no_bj").siblings().removeClass("no_bj"); $(".first").each(function(){ if($(this).find("ul.sec_nav").children("li").length == 0){$(this).find("ul.sec_nav").remove()} $(this).hover(function(){ $(this).find("ul.sec_nav").slideDown(100); },function(){ $(".first").each(function(){ $(this).find("ul.sec_nav").slideUp(100); }); }); }); /*2014-06-21*/ var pageBj = $("img.index_bj"); $(pageBj).css({ "height":$("div.index").height()+"px" }); $(window).resize(function(){ $(pageBj).css({ "height":$("div.index").height() + "px" }); }); });