如何申请.each()仅适用于某些父母?

时间:2011-07-11 21:34:42

标签: jquery

$("table").each(function(){
//Code goes here
}

我想使用这个(上面的代码)为其父类属性“特色”。所以从下面的例子我想只包括1)前。 例如:

1)

<div class="featured">
<table>
</table>
</div>

2)

<div class="Nonfeatured">
<table>
</table>
</div>

3 个答案:

答案 0 :(得分:7)

$(".featured > table").each(function(){
    //Code goes here
}

答案 1 :(得分:3)

我想你想要

$(".featured table").each(function(){
    //Code goes here
}

...其中说,“对于每个table元素,它是具有”特色“类的元素的后代,运行此函数。”

或者,如果您只想要这些元素的直接儿童

$(".featured > table").each(function(){
    //Code goes here
}

...其中说“对于每个table元素,对于具有”特色“类的元素的直接子,运行此函数。”

更多:

答案 2 :(得分:2)

试试这个:

$(".featured table").each(function(){
 //Code goes here
}