如果用jquery,就简单多了,代码如下:
$(document).ready(function(){
$('li').hover(function(){
$(this).children('ul.subNav').animate({height:'120px'},'slow');
},function(){
$(this).children('ul.subNav').height(0);
});
});