Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
jquery tablesorterクラスを使用しており、mouseOverイベントでのみ2番目のtdにクラスを追加したいと思います。
<tr> <td> 1 </ td> <td> 2 </ td> </ tr>
$('#table').mouseover(function() { $("#table td:nth-child(2)").addClass("tablesorter"); }