jquery tablesorter如何只将类添加到第二个td?

时间:2012-04-14 12:26:50

标签: javascript jquery html tablesorter

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

< TR>
< TD→1< / TD>
< TD> 2'; / TD>
< / TR>

1 个答案:

答案 0 :(得分:4)

$('#table').mouseover(function() {
   $("#table td:nth-child(2)").addClass("tablesorter");
}