jquery – 有没有办法结合$(this)与:nth-​​child?

前端之家收集整理的这篇文章主要介绍了jquery – 有没有办法结合$(this)与:nth-​​child?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在一个每一个迭代的中间,想要呼出第二或第三个孩子的每一个,但不能使它的工作。
alert($(this + ' :nth-child(2)').attr('id'));

我唯一可以想到的选择是这样可怕的愚蠢:

$(this).children(':first').next().attr('id','ddParam' + newCount);
 $(this).children(':first').next().next().attr('id','txt' + newCount);
 $(this).children(':first').next().next().next().attr('id'...

解决方法

您需要的是 context.对于上下文,选择器将仅查找作为上下文的子元素(在本例中为此)的元素。
$(':nth-child(2)',this).attr('id');

jsFiddle Demo

这基本上是一样的:

$(this).find(':nth-child(2)').attr('id');

如果你只需要直接的孩子,而不是每一个后裔,你应该使用.children():

$(this).children(':nth-child(2)').attr('id');
原文链接:https://www.f2er.com/jquery/183351.html

猜你在找的jQuery相关文章