js:
$(function(){ $("ul.sub").parent().append(""); $("ul.sub ul").parent().append(""); $('#nav ul').closest('li').hover(function(){ $(this).find("span").addClass("arrow"); $(this).find("em").removeClass("arrow"); $(this).children("ul").stop(true,true).slideDown('fast').show(); $("#nav ul>li").hover(function(){$(this).addClass("hover")}, function(){$(this).removeClass("hover")}); },function(){ $(this).children("ul").stop(true,true).hide(); $(this).find("span").removeClass("arrow"); $(this).find("em").addClass("arrow"); })})
下拉导航菜单