我有一個表可點擊<td>
的。在點擊添加行到第一類和相應的<th>在表
當我點擊表格的單元格我想添加一個類
- 我對
- 相當於該行是 列的
<th>
單擊的行中的第一個
<td>
本質上,我試圖顯示哪個<td>
被視覺點擊。
我可以計算出如何將類添加到該行的第一<td>
,但它們添加到這一切,不只是一個我。我無法弄清楚如何將它添加到<th>
尋找一些關於如何在JQuery中做到這一點的建議。我不完全的代碼是:
//Adding Class Needed
$('.table-bordered tr td').on('click',function(){
//Add Class to First TD in ROW
$("tr td:nth-child(1)").addClass('superStyle');
//Add Class to Header <th> Cell above
});
DEMOhttp://jsfiddle.net/L8s5X/
檢查這個http://jsfiddle.net/cs e_tushar/L8s5X/12/ –