ユーザーがテーブルの任意の列を選択でき、jQueryでそれを可能にすることは可能ですか?
ここに再生する例があります:http://jsbin.com/oluyex/1/edit
jQUERY。それぞれの子を選択する方法がわかりません:
$(function(){
$("th").click(function(){
$(this).("children").css("background-color","red");
});
})
HTML:
<table id="taula" border="1">
<tr>
<th>Header 1</th>
<th>Header 2</th>
</tr>
<tr>
<td>row 1, cell 1</td>
<td>row 1, cell 2</td>
</tr>
<tr>
<td>row 2, cell 1</td>
<td>row 2, cell 2</td>
</tr>
</table>