1

我使用 jquery tablesorter 类,我只想在 mouseOver 事件上将类添加到第二个 td:

<tr>
<td>1</td>
<td>2</td>
</tr>

4

1 回答 1

4
$('#table').mouseover(function() {
   $("#table td:nth-child(2)").addClass("tablesorter");
}
于 2012-04-14T12:33:44.867 回答