jQuery 下拉菜单问题

发布于 2024-09-24 01:29:39 字数 221 浏览 1 评论 0原文

我的下拉菜单有一些问题。代码在这里: http://jsfiddle.net/xY2p6/1/

一些简单的东西我只是没有得到,但如您所见,它无法正常运行。我不确定如何将下拉菜单的隐藏链接到用户将鼠标悬停在菜单链接(而不是实际的下拉菜单)上时。

有什么想法吗?

Having some issues with my dropdown menu. Code here:
http://jsfiddle.net/xY2p6/1/

Something simple I'm just not getting, but as you can see it's not functioning correctly. I'm not sure how to link the hiding of the dropdown to when the user hovers off of the menu link, rather than the actual dropdown.

Any ideas?

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

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

发布评论

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

评论(2

貪欢 2024-10-01 01:29:39

由于您的菜单位于同一个

  • 内,您可以直接将悬停附加到它,如下所示:
  • $(function() {
        $(".dropdown").hover(function() {
            $(this).children("div.sub-menu").slideDown(200);
        }, function() {
            $(this).children("div.sub-menu").slideUp(200);
        });
    });​
    

    您可以在这里尝试一下,或者使用 < 更简单code>.slideToggle(),如下所示:

    $(function() {
        $(".dropdown").hover(function() {
            $(this).children("div.sub-menu").slideToggle(200);
        });
    });​
    

    您可以给它一个在这里试试

    Since your menu is inside the same <li> you can just attach the hover to it directly, like this:

    $(function() {
        $(".dropdown").hover(function() {
            $(this).children("div.sub-menu").slideDown(200);
        }, function() {
            $(this).children("div.sub-menu").slideUp(200);
        });
    });​
    

    You can give it a try here, or even simpler with .slideToggle(), like this:

    $(function() {
        $(".dropdown").hover(function() {
            $(this).children("div.sub-menu").slideToggle(200);
        });
    });​
    

    You can give it a try here.

    痕至 2024-10-01 01:29:39

    你的 javascript 有点混乱。

    $(document).ready(function() {
        $(".dropdown").hover(
            function(){
                $(this).children("div.sub-menu").slideDown(200);
            },
            function(){
                $(this).children("div.sub-menu").slideUp(200);
            }
        );
    });​
    

    在这里:http://jsfiddle.net/xY2p6/4/

    Your javascript is slighty messed up.

    $(document).ready(function() {
        $(".dropdown").hover(
            function(){
                $(this).children("div.sub-menu").slideDown(200);
            },
            function(){
                $(this).children("div.sub-menu").slideUp(200);
            }
        );
    });​
    

    here you go: http://jsfiddle.net/xY2p6/4/

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