我正在一个每一个迭代的中间,想要呼出第二或第三个孩子的每一个,但不能使它的工作。
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');
这基本上是一样的:
$(this).find(':nth-child(2)').attr('id');
如果你只需要直接的孩子,而不是每一个后裔,你应该使用.children():
$(this).children(':nth-child(2)').attr('id');