用户是否有可能选择表格的任何列并且我可以使用 jQuery 来实现?
我有这个例子可以玩:http: //jsbin.com/oluyex/1/edit
查询。我不知道如何选择每个 th 的孩子:
$(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>