使用jQuery在每个表行的第一个TD上添加类

时间:2010-10-13 15:48:48

标签: jquery html css class html-table

我有一张我正在使用的桌子,就像这样:

<table width="100%" border="0" cellspacing="0" cellpadding="0" id="tablecontent">
  <tr class="tablerow">
    <td>This is the td I want to add a class to.</td>
    <td class="cell2">Stuff</td>
    <td class="cell3">Stuff</td>
  </tr>
  <tr class="tablerow">
    <td>This is the td I want to add a class to.</td>
    <td class="cell2">Stuff</td>
    <td class="cell3">Stuff</td>
  </tr>
</table>

每行中的第一个TD标记没有要使用的类或ID。我没有权限更改HTML输出,所以我想添加一些jQuery来定位每个tablerow的第一个TD标记。我该怎么做?

5 个答案:

答案 0 :(得分:12)

$('#tablecontent td:first-child').addClass('someClass');

这会使用the first-child selector来选择<td>表格中父级#tablecontent的所有first-child元素。

示例: http://jsfiddle.net/duKKC/

答案 1 :(得分:2)

你可以试试下面的jQuery

$('.tablerow').each(function(index) {
    $(this).children('td').first().addClass('class');
});

这将解决您的问题:)

答案 2 :(得分:0)

$(".tablerow").find("td:first-child").addClass('class');

答案 3 :(得分:0)

我相信以下内容可行:

$('.tablerow td:first-child').addClass('class');

答案 4 :(得分:0)

$('#tablecontent td:first-child').addClass("first-row");