我有一张正在工作的桌子,它是这样的:
<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来针对每个表行的第一个TD标记。我该怎么做?