我正在尝试在侧边栏上制作手风琴菜单,这是我的代码。
//slide up all the menus that aren't about the current page
if($( "aside li.menu-item-has-children a").parent().hasClass("current-menu-ancestor")) {
$(this).next().slideUp();
}
$("aside li.menu-item-has-children a").click(function () {
//slide up all the link lists
$(this).next().slideUp();
//slide down the link list below the h3 clicked - only if its closed
if (!$(this).next().is(":visible")) {
$(this).next().slideDown();
}
})
第二部分,关于点击链接的部分完美无缺。问题出在第一部分,应该向上滑动与当前页面无关的菜单。
我做错了什么?