Jquery:点击slideUp问题

发布于 2024-12-25 20:01:42 字数 524 浏览 0 评论 0原文

我有一个 JQuery 导航,单击父

  • 时会使用 JQuery 向下滑动。第二次单击时,它将向上滑动导航。我遇到的问题是,我的客户希望如果他单击屏幕上的其他位置,它也可以向后滑动,即仅单击空白区域就会折叠导航。
  • 有什么想法吗?

    这是 Jquery:

    $('#menu-flag-menu > li > a').click(function(e) {e.preventDefault();});
    
    
    $("#menu-flag-menu li a").click(function(){ 
    
        // close all opened sub menus
        $("ul", $(this).parent().siblings()).stop(true,true).slideUp();
    
        var ul = $(this).next("ul");     
        ul.stop(true,true).slideToggle('fast'); 
    });
    

    I have a JQuery navigation which on clicking a parent <li> slides down using JQuery. On a second click it will slide the navigation up. The problem I have is that my clients wants it also to slide back up if he clicks somewhere else on screen, i.e just clicking on blank white space would collapse the nav.

    Any ideas?

    Here is the Jquery:

    $('#menu-flag-menu > li > a').click(function(e) {e.preventDefault();});
    
    
    $("#menu-flag-menu li a").click(function(){ 
    
        // close all opened sub menus
        $("ul", $(this).parent().siblings()).stop(true,true).slideUp();
    
        var ul = $(this).next("ul");     
        ul.stop(true,true).slideToggle('fast'); 
    });
    

    如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

    扫码二维码加入Web技术交流群

    发布评论

    需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

    评论(2

    半仙 2025-01-01 20:01:42

    这应该有效:

    $(document).click(function (e) {
    
        // if we click on anything other than the navigation menu
        // or it's descendants then slide up the menu
        if(e.target.id !== "menu-flag-menu" 
            && !$(e.target).closest("#menu-flag-menu").length) {
            $(".sub-menu").stop().slideUp();
        }
    });
    

    This should work:

    $(document).click(function (e) {
    
        // if we click on anything other than the navigation menu
        // or it's descendants then slide up the menu
        if(e.target.id !== "menu-flag-menu" 
            && !$(e.target).closest("#menu-flag-menu").length) {
            $(".sub-menu").stop().slideUp();
        }
    });
    
    风蛊 2025-01-01 20:01:42

    我的建议是尝试使用 .mouseenter 事件打开菜单,使用 mouseleave 事件关闭菜单。

    My advice would be to try using the .mouseenter event to open the menu and the mouseleave event to close the menu.

    ~没有更多了~
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文