gpt4 book ai didi

jquery - 突出显示一列

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

我在一本 jQuery 书中看到,您可以突出显示正在排序的列。

$('th.sortable').click(function() {
var $th = $(this);
var column = $th.index();
var $table = $th.closest('table');
var rows = $table.find('tr:not(:has(th))').get();

问:如何将“hightlight”类添加到被单击的列中的每个单元格?

最佳答案

在本例中您可以使用一个 nth-child 选择器。

$('th.sortable').click(function() {
var $th = $(this),
column = $th.index(),
$table = $th.closest('table');

$table.find('tr td:nth-child(' + (column+1) + ')').addClass('highlight');
});

关于jquery - 突出显示一列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3972402/

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