admin管理员组文章数量:1335371
So I'm trying to run an each loop in jQuery that has an if statement to determine if the element it's on is the first-child of it's parent and also have the else statement following (this seems to be the difficult part) to have other code run for those.
Everything I've tried and found only seems to work without the if and else..
Any thoughts?
So I'm trying to run an each loop in jQuery that has an if statement to determine if the element it's on is the first-child of it's parent and also have the else statement following (this seems to be the difficult part) to have other code run for those.
Everything I've tried and found only seems to work without the if and else..
Any thoughts?
Share Improve this question asked Apr 4, 2014 at 18:07 ReubenReuben 2,7516 gold badges32 silver badges47 bronze badges 2- 1 Could you post some code of what you are doing – jwatts1980 Commented Apr 4, 2014 at 18:09
- "Any thoughts?" About what??? – A. Wolff Commented Apr 4, 2014 at 18:10
2 Answers
Reset to default 5Given the following example:
<table>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
</table>
there are a couple of ways to do it
$("table tr td:first-child").each(function() {
//perform actions on all of the first TD elements
});
$("table tr td:not(:first-child)").each(function() {
//perform actions on all of the other TD elements
});
Or
$("table tr td").each(function() {
var td = $(this);
if (td.is(":first-child")) {
//perform actions on all of the first TD elements
}
else {
//perform actions on all of the other TD elements
}
});
It can't be that difficult ?
$('.elements').each(function(index, elem) {
if ( $(elem).is(':first-child') ) {
// it's a baby
}else{
// it's something else
}
});
FIDDLE
本文标签: javascriptjQuery each If element is firstchild elseStack Overflow
版权声明:本文标题:javascript - jQuery each: If element is first-child else - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1742382401a2464355.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论