$(document).ready(function(){
$("#main1").children("li").hover(function(){
$(this).find("ul").slideDown("slow"); }, function() {
$(this).find("ul").slideUp('slow'); } );
})
以上用于创建滑动下拉菜单的代码在Firefox中完美运行,但在IE中却不行。任何解决方案?