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