0

我正在使用 jQuery Accordion 进行侧边栏导航。目前我有 2 个链接,它们下面都有“孩子”。

这是我的 jsFiddle:http: //jsfiddle.net/6Eh8C/

您会注意到,当您单击“关于我们”时,图库会关闭。这不应该发生。只有当我单击“画廊”时,画廊才会关闭。

我该如何解决?

这是我的 jQuery:

jQuery(function($) {

        $('#accordion > li > a').click(function (e) {
            if ($(this).next('ul').length == 0) {
                // link is for navigation, do not set up accordion here
                return;
            }

            // link is for accordion pane

            //remove all the "Over" class, so that the arrow reset to default
            $('#accordion > li > a').not(this).each(function () {
                if ($(this).attr('rel')!='') {
                    $(this).removeClass($(this).attr('rel') + 'Over');
                }

                $(this).siblings('ul').slideUp("slow");
            });

            //showhide the selected submenu
            $(this).siblings('ul').slideToggle("slow");

            //addremove Over class, so that the arrow pointing downup
            $(this).toggleClass($(this).attr('rel') + 'Over');
            e.preventDefault();
        });     

        $('.slides_item').children('div').css('background','#ededed')

    });

非常感谢任何指针:-)

4

1 回答 1

0

我想你只想删除一行:

$('#accordion > li > a').not(this).each(function () {
    if ($(this).attr('rel')!='') {
        $(this).removeClass($(this).attr('rel') + 'Over');
    }

    // Remove this line, you don't want to slide up other uls.
    // $(this).siblings('ul').slideUp("slow");
});

示例:http: //jsfiddle.net/6Eh8C/1/

于 2013-03-17T18:54:16.813 回答