gpt4 book ai didi

jQuery : Selecting unknown child element

转载 作者:行者123 更新时间:2023-12-01 07:27:04 24 4
gpt4 key购买 nike

我有一个字典列表,我想访问第二个子元素而不知道它是什么元素。例如:

    <dl>
<dd>
<div></div>
<div></div> (select this item - however can be any html element)
</dd>
<dd>
<div></div>
<div></div> (select this item - however can be any html element)
</dd>
<dd>
<div></div>
<div></div> (select this item - however can be any html element)
</dd>
</dl>

我试过了...

    $('dd').each(function() {
$(this + ':nth-child(2)').addClass('hover');
}

我尝试使用一系列不同的数字 0-2 来尝试找到该元素。 0 将类放入所有第一个子 html 标签中。例如:

    <html class="hover">
<body class="hover">
<div class="hover">

...等等,顺便说一句,这不是我想要的。让我相信 $(this) 实际上是针对窗口而不是我个人的 dd 元素。

无论如何,如果有人能提供一些线索,我将不胜感激。谢谢。

最佳答案

问题只是你的语法。尝试:

$('dd').each(function() {
$(':nth-child(2)', this).addClass('hover');
}

关于jQuery : Selecting unknown child element,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8807634/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com