苦苦挣扎()

时间:2016-07-31 10:50:11

标签: jquery

我正在尝试在侧边栏上制作手风琴菜单,这是我的代码。

//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();
    }
})

第二部分,关于点击链接的部分完美无缺。问题出在第一部分,应该向上滑动与当前页面无关的菜单。

我做错了什么?

0 个答案:

没有答案