我正在尝试将动画添加到 wordpress 的下拉菜单中。我正在使用这段代码:
jQuery(function() {
jQuery("ul#menu-menu-1").hover(function() {
jQuery(this).find('ul.sub-menu')
.stop(true, true).delay(50).animate({ "height": "show", "opacity": "show" }, 200 );
}, function(){
jQuery(this).find('ul.sub-menu')
.stop(true, true).delay(50).animate({ "height": "hide", "opacity": "hide" }, 200 );
});
});
但是 1)它打开一个已经“就位”的子菜单和 2)第一个父级的子菜单是第二个父级的子菜单......