gpt4 book ai didi

jquery - 使用 jQuery 选择任意列

转载 作者:行者123 更新时间:2023-12-01 00:03:27 25 4
gpt4 key购买 nike

用户是否可以选择表的任何列,并且我可以使用 jQuery 使其成为可能?

我这里有一个例子可以玩:http://jsbin.com/oluyex/1/edit

jQUERY。我不知道如何选择每个的 child :

$(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>

最佳答案

为此,您需要做的就是获取表头的索引,然后使用该索引将该类应用到列中的每个表单元格。您必须循环遍历每一行才能找到适当的表格单元格。 -http://jsfiddle.net/BMGKv/

$('th').click(function() {
var th_index = $(this).index();
$('tr').each(function() {
$(this).find('td').eq(th_index).toggleClass('highlight');
});
});

关于jquery - 使用 jQuery 选择任意列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13994883/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com