$('table.listings td:contains("You")').each(function(){
$(this).child开发者_运维问答ren('td:nth-child(2)').addClass('highlighted');
});
I have multiple table.listings
on the page but the one that contains "You" is selected and I want to addClass highlighted
to the 2nd cell in each row, but the above code isn't working as I expected.
$('table.listings:contains("You") td:nth-child(2)').addClass("highlight");
$('table.listings :contains("You")').each(function(){
$(this).children('td:nth-child(2)').addClass('highlighted');
});
Try this:
$('table.listings td:contains("You")').each(function(){
$("td:nth-child(2)", $(this).parent().parent().get(0)).addClass('highlighted');
});
精彩评论