gpt4 book ai didi

javascript - 从父代 ID 中选择第 n 个子代

转载 作者:行者123 更新时间:2023-12-03 11:52:27 24 4
gpt4 key购买 nike

我有父级ID,该父级有3个 child ,每个 child 都有自己的 child 。这是树状结构。我想要的是选择在第一级选择第二个 child 。

目前我正在这样做

var Second_child = $('#Parent_id:nth-child(2)');

但它没有选择 child 。我不想使用 eq() 函数。

最佳答案

您需要使用child selector这里

var Second_child = $('#Parent_id > :nth-child(2)');

如果您使用descendant selector每个级别的第二个 child 将被选中

您的选择器尝试查找 id Parent_id 的元素,该元素是其父元素的第二个子元素

关于javascript - 从父代 ID 中选择第 n 个子代,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25761479/

24 4 0