我想给表格行一个单元格的类,如下所示:
我有这张桌子,
<table id="mytable">
<tr>
<th>Name</th>
<th>Favorite color</th>
</tr>
<td>James</td>
<td>red</td>
</tr>
<tr>
<td>John</td>
<td>blue</td>
</tr>
</table>
我希望它以这样的方式结束。
<table id="mytable">
<tr>
<th>Name</th>
<th>Favorite color</th>
</tr>
<tr class="red">
<td>James</td>
<td>red</td>
</tr>
<tr class="blue">
<td>John</td>
<td>blue</td>
</tr>
</table>
这可能吗?