//??????????????????????????????л? $(document).ready(function(){ $("#menu .hover").find("p a:first").addClass("thisOn"); $("#menu .hover").parents(".ul3_ul:first").show(); //????? $("#menu .dep_title2").click(function(){ var thisSibling = $(this).siblings(".ul2_ul"); $("#menu .ul2_ul").not(thisSibling).slideUp("normal"); thisSibling.stop(true,true).slideToggle('normal'); }); //?????Ч?? $("#menu .dep_title2").hover( function(){$(this).addClass("h2Hover")}, function(){$(this).removeClass("h2Hover")} ); //??λ????????? //?????д????????????????????????????hover??????? if($("#menu .hover").length==0){ $(".dep_title2:first").click() } else{ $("#menu .hover").parents(".Depth0:first").find(".dep_title2").click(); } //?????? $(".showdoctor").click(function(){ $(".showdoctor").not($(this)).removeClass("hidedoctor"); $(this).toggleClass("hidedoctor"); var thisSibling = $(this).siblings(".doctor_team"); $("#menu .doctor_team").not(thisSibling).hide(); thisSibling.stop(true,true).toggle(); //showdoctor }) //?????????????????? $("#menu .hover .showdoctor:first").click() //?????????????? $(".Depth1").each(function(){ $(this).find("p:first").click(function(){ if($(this).siblings(".doctor_team").length==0 && $(this).siblings("ul").length>0){ $(this).toggleClass("hidedoctor"); } $(this).siblings("ul").not(".doctor_team").stop(true,true).slideToggle('normal'); }); }); $("#menu .hover .doctor_team").show(); $("#menu .hover").parents(".ul2_ul:first").show(); });