1

问题:

在下面提供的示例中,我有一个带有选项的 sidenav,您单击以显示一个切换的 div。如果您单击菜单“Dolar”中的第三项,您将看到一个下拉菜单,其中包含三个选项出现在链接下方。

这很好,但我希望在单击其他链接时关闭下拉菜单。我不确定如何实现这一目标。

jsFiddle:

http://jsfiddle.net/visualdecree/4A23Z/39/

jQuery:

注意:我知道它可能很乱,我还在学习这个。

$('.sn a, .sn-alt a').on('click',function(){ // Sidenav panel script

    var panID = $("#" + $(this).data('panel') );

    $("div[id*='sn-pan-']")
    .stop()
    .hide({width:'toggle'},400);

    $(panID)
    .css({'left' : '139px','overflow':'visible'})
    .stop()
    .animate
    ({ width: "toggle", opacity: "toggle"
    }, { duration: "slow" });

    $(".control-view").hide();  // Fadein menu close button
    $(".control-view").not(":visible").stop().delay(400).fadeTo("fast", 0.33);   

});

$('.sn, .sn-drop').click(function(e) {
    $('ul.sidenav li').not(this).removeClass('active'); // Active class removal / add
    $(this).stop(true, true).toggleClass("active");    
});

$('.sn-alt').click(function(e) {
    $('ul.additional li').not(this).removeClass('active'); // Active class removal / add
    $(this).stop(true, true).toggleClass("active");    
});


$(".control-view").hover( // Hover effect for menu close button
    function () {
    $(".control-view").stop().hide().fadeTo("fast", 1); // Hover in
   }, 
    function () {
    $(".control-view").fadeTo("normal",0.33); // Fade back to previous set opacity
});

$('.control-view').click(function(e) {
        $("div[id*='sn-pan-']")
        .stop(true,true)
        .hide({width:'toggle'}, 100);

        $('ul.sidenav li').not(this).removeClass('active');

        $(".control-view").stop().fadeOut("fast");
});



$(".additional").hide(); // Controls for the 'design' dropdown

$(".sn-drop").click(function(){
    $(".additional").slideToggle(300);
    var scrt_var = Math.random();
    return false; //Prevent the browser jump to the link anchor
});
4

2 回答 2

2

只需添加此 JQuery,当您单击侧边栏中的其他链接时,它将关闭您的.additional

$(".sn").click(function(){
    $(".additional").slideUp(300);
    var scrt_var = Math.random();
    return false; //Prevent the browser jump to the link anchor
});
​
于 2012-09-07T12:19:14.883 回答
0

如果它只是左侧的链接,您希望成为关闭下拉列表的触发器,那么您可以简单地这样做:

$('.sn').click(function(){
    $('.additional').slideUp();
})
于 2012-09-07T12:18:43.700 回答