标签: javascript jquery html tablesorter
我使用jquery tablesorter类,我想只在mouseOver事件上将类添加到第二个td:
< TR> < TD→1< / TD> < TD> 2'; / TD> < / TR>
答案 0 :(得分:4)
$('#table').mouseover(function() { $("#table td:nth-child(2)").addClass("tablesorter"); }