// javascript document "use strict;" $(document).ready(function(e) { //二级 $("#nav-1").find(".dropdown").hover(function(){ var $this=$(this); $this.find(">.dropdown-menu").slidedown(100,function(){ var $this=$(this); console.log($this.find(">*")); $this.css({"overflow":"visible"}); $this.find('>li').css({"overflow":"visible"}); $this.find('.nav-div').css({"height":$this.height()+"px"}) }); },function(){ var $this=$(this); $this.find(">.dropdown-menu").stop().slideup(); }); // $("#nav-1").find('.nav-li').hover(function(){ // var $this=$(this); // $this.find(">.nav-div").slidedown(); // },function(){ // var $this=$(this); // $this.find(">.nav-div").stop().slideup(); // }); })