JQuery slideToggle,折叠子元素

时间:2013-11-28 09:46:57

标签: c# javascript jquery asp.net webforms

我有一个带有可折叠子菜单的菜单,有3个级别的菜单,它工作正常,但我不知道如何折叠所有子子级别,当您单击以折叠父级子级别时。

它的工作方式是,如果单击级别1,则展开级别2,然后如果单击级别2,则展开级别3.

问题在于,当所有级别都打开时,我需要能够单击级别1并同时折叠级别2和3。我现在正在使用slideToggle。

我在下面粘贴了我的代码,我知道这是一种非常垃圾的方法,但我不得不将假H标签分配给菜单项,因为它是由ASP:Menu控件生成的,它没有给出任何唯一ID菜单项,所以我不得不找到一个方法。

HTML:

<div id="Div1" class="MenuBar">
    <a href="#Menu1_SkipLink" style="position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden;">Skip Navigation Links</a>
    <div class="mainmenu" id="Div2">
        <ul class="level1">
            <li><a class="level1 staticItem level1">
                <img src="/images/calculator.png" alt="" title="" class="icon" /><h7>Financial</h7></a></li>
            <li><a class="level2 staticItem level2">
                <h10>Address</h10>
            </a></li>
            <li><a class="level3 staticItem level3" href="javascript:openNewWin(&#39;/Controls/Financial/AddressBook.aspx&#39;)">
                <h11>Address Book</h11>
            </a></li>
            <li><a class="level3 staticItem level3" href="javascript:openNewWin(&#39;/Controls/Financial/CustomerTypes.aspx&#39;)">
                <h12>Customer Types</h12>
            </a></li>
            <li><a class="level1 staticItem level1">
                <img src="/images/container.png" alt="" title="" class="icon" /><h8>Container</h8></a></li>
            <li><a class="level2 staticItem level2">
                <h13>Containers</h13>
            </a></li>
            <li><a class="level1 staticItem level1">
                <img src="/images/product.png" alt="" title="" class="icon" /><h9>Product</h9></a></li>
        </ul>
    </div>
    <a id="Menu1_SkipLink"></a>

</div>

JQuery的:

$(function () {
    //When opening the page all level 2 and level 3 items must be hidden.
    $(function () {
        hideitems();
    })

    function hideitems() {
        $('h10').slideUp();
        $('h11').slideUp();
        $('h12').slideUp();
        $('h13').slideUp();
    }
    //Financial Click
    $(document).ready(function () {
        $('h7').click(function () {
            $('h10').slideToggle();

        });
    });
    //Address Click
    $(document).ready(function () {
    $('h10').click(function () {
        $('h11').slideToggle();
        $('h12').slideToggle();
    });
})
});

关于如何折叠所有子级别的任何建议都将非常感激,因为我不是JS的主人。

2 个答案:

答案 0 :(得分:0)

不改变标记:构建一个将子项链接到项目的结构,并在.click()回调中使用它。

例如,您可以使用$(...).data将数据与节点关联:

// init function :
// we stack all level2 and level3 items as subitems of the last level1 item we met
// we stack all level3 items as subitems of the last level2 item we met
function init() {
    var $menu = $('ul.level1');
    var lv1Itm = null,
        lv2Itm = null;
    $menu.find('a').each(function () {
        var subitems;
        var li = $(this).closest('li').get(0);
        if ($(this).hasClass('level1')) {
            lv1Itm = li;
            $(li).data('subitems', []);
        }

        if ($(this).hasClass('level2')) {
            lv2Itm = li;
            $(li).data('subitems', []);

            $(lv1Itm).data('subitems').push(li);
        }

        if ($(this).hasClass('level3')) {
            $(lv1Itm).data('subitems').push(li);
            $(lv2Itm).data('subitems').push(li);
        }
    });
}
init();

$('.level1').click(function (e) {
    var subitems = $(this).closest('li').data('subitems');
    var shouldHideSubmenus = $(subitems).is(':visible');
    if (shouldHideSubmenus) {
        // in this case, hide all 'li' children items
        $(subitems).slideUp();
    } else {
        // in this case, only show level2 items
        $(subitems).find('.level2').closest('li').slideDown();
    }
});

$('.level2').click(function (e) {
    var subitems = $(this).closest('li').data('subitems');
    var shouldHideSubmenus = $(subitems).is(':visible');
    if (shouldHideSubmenus) {
        // in this case, hide all 'li' children items
        $(subitems).slideUp();
    } else {
        // in this case, only show level3 items
        $(subitems).find('.level3').closest('li').slideDown();
    }
});

fiddle

答案 1 :(得分:0)

尝试使用此http://jsfiddle.net/modaloda/B8b4z/1/

//Financial Click
$(document).ready(function () {
    $('h7').click(function () {
       $('h10').slideToggle(); 
       $('h11').slideUp("fast");
       $('h12').slideUp("fast");
    });
});