jQuery 选择这个子项

发布于 2024-10-12 04:52:23 字数 816 浏览 1 评论 0原文

<ul>
   <li class="hoverMe"><div class="secret">Haha</div></li>
   <li class="hoverMe"><div class="secret">Blabla</div></li>
   <li class="hoverMe"><div class="secret">Tada</div></li>
</ul>

Secred div 隐藏在 css 中:

.secret {
   display: none;
}

我想在悬停“hoverMe”后显示“hoverMe”的秘密子级(因此,当用户悬停第一个链接时,他会看到“哈哈”,第二个链接“Blabla”等)。

我尝试过这段代码不起作用,我一直在尝试用“child(ren)”等替换“next”,但没有什么想法吗?

 jQuery().ready(function() {

                jQuery('.hoverMe').hover(function(){
                    jQuery(this).next('.secret').Toggle();
                });
            });

奇怪的是 (this).children() 切换所有子项,但是。当我尝试使用 (this).children('.secret') 时,它没有做任何事情。

<ul>
   <li class="hoverMe"><div class="secret">Haha</div></li>
   <li class="hoverMe"><div class="secret">Blabla</div></li>
   <li class="hoverMe"><div class="secret">Tada</div></li>
</ul>

Secred divs are hidden in css:

.secret {
   display: none;
}

I want to display the secret child of "hoverMe" after hovering "hoverMe' (so when user hovers link number one he sees "Haha", nubmer two "Blabla" etc.).

I've tried this code and it doesn't work. I've been trying replacing "next" with "child(ren)" etc., but nothing. Any ideas?

 jQuery().ready(function() {

                jQuery('.hoverMe').hover(function(){
                    jQuery(this).next('.secret').Toggle();
                });
            });

The strange thing is (this).children() toggles all children, but when I try with (this).children('.secret') it doesn't do a thing.

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

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

发布评论

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

评论(7

比忠 2024-10-19 04:52:23

hover() 可以绑定两个处理程序:

$('.hoverMe').hover(function(){
  $(this).children().show();
}, function(){
  $(this).children().hide();
})

或者

$('.hoverMe').hover(function(){
  $(this).find('.secret').show();
}, function(){
  $(this).find('.secret').hide();
})

或者,如 @Felix Kling 请注意,它只能绑定一个句柄:

$('.hoverMe').hover(
  $(this).find('.secret').toggle();
)

hover() can bind two handlers:

$('.hoverMe').hover(function(){
  $(this).children().show();
}, function(){
  $(this).children().hide();
})

or

$('.hoverMe').hover(function(){
  $(this).find('.secret').show();
}, function(){
  $(this).find('.secret').hide();
})

or, as @Felix Kling kindly noticed, it can bind only one handle with:

$('.hoverMe').hover(
  $(this).find('.secret').toggle();
)
夜吻♂芭芘 2024-10-19 04:52:23

.secret 未显示时,您的 .hoverme 是空的(高度为 0),因此没有任何可悬停的内容。

您需要使用 visibility:hidden / visibility:visible 来代替

.secret {
    visibility:hidden;
}

jQuery().ready(function() {
  $(".hoverMe").hover(function () {
    $(this).find(".secret").css("visibility", "visible");
  }, function () {
    $(this).find(".secret").css("visibility", "hidden");
  });
});

示例:http://jsfiddle.net/bM7f2/

Your .hovermes are empty (have a height of 0) when .secretis not displayed, so there is nothing to hover over.

You'll need to use visibility: hidden / visibility: visible instead

.secret {
    visibility:hidden;
}

jQuery().ready(function() {
  $(".hoverMe").hover(function () {
    $(this).find(".secret").css("visibility", "visible");
  }, function () {
    $(this).find(".secret").css("visibility", "hidden");
  });
});

Example: http://jsfiddle.net/bM7f2/

来世叙缘 2024-10-19 04:52:23

http://api.jquery.com/children/

jQuery(this).children('.secret')[0]

哦,你试过了。没关系。

http://api.jquery.com/children/

jQuery(this).children('.secret')[0]

Oh you tried that. never mind.

别低头,皇冠会掉 2024-10-19 04:52:23
$(function(){
    $("ul li.hoverMe").hover(function(){
        $(this).children("div.secret").show();
    },
    function(){
        $(this).children("div.secret").hide();
    });
});
$(function(){
    $("ul li.hoverMe").hover(function(){
        $(this).children("div.secret").show();
    },
    function(){
        $(this).children("div.secret").hide();
    });
});
怀里藏娇 2024-10-19 04:52:23
jQuery().ready(function() {
                jQuery('.hoverMe').hover(function(){
                    jQuery(this).children('.secret').**t**oggle();
                });
            });

JS 区分大小写

jQuery().ready(function() {
                jQuery('.hoverMe').hover(function(){
                    jQuery(this).children('.secret').**t**oggle();
                });
            });

JS is case sensitive

阿楠 2024-10-19 04:52:23
  • 使用 children
  • toggle 需要以小写字母开头。
  • 重要提示:您需要列表元素中的其他“可见”内容。否则它不占用空间并且没有任何东西可以悬停在上面。至少您必须添加一个  。正如您在演示中看到的,我添加了这些。如果删除它,它将不再起作用。

所以应该是:

jQuery('.hoverMe').hover(function(){
    jQuery(this).children('.secret').toggle();
});

你的就绪处理程序也是错误的,必须是:

jQuery(document).ready(function() {
    //...
});

DEMO

  • Use children.
  • toggle needs to start with a small letter.
  • Important: You need other "visible" content in the list element. Otherwise it takes up no space and there is nothing you can hover over. At least you would have to add an  . As you can see in the demo, I added those. If you remove it, it won't work anymore.

So it should be:

jQuery('.hoverMe').hover(function(){
    jQuery(this).children('.secret').toggle();
});

Your ready handler is also wrong, must be:

jQuery(document).ready(function() {
    //...
});

DEMO

寂寞美少年 2024-10-19 04:52:23

如果这种情况发生在您身上并且似乎没有任何作用,请尝试将另一个 child() 添加到链中,或者至少检查您的标记以确保您的父元素不是真正的祖父元素。

答案是:

$(this).children().children().show();

If it ever happens to you and nothing seem to work try adding another child() to the chain, or at least check your markup to make sure that your parent element is not really a GRANDparent.

The answer was:

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