gpt4 book ai didi

jquery - TD :hover which highlights the th for that td

转载 作者:技术小花猫 更新时间:2023-10-29 11:01:05 26 4
gpt4 key购买 nike

我有一张 table 。现在我想要的是,当我突出显示 Jackson (td) 时,也符合该突出显示的“th”。所以对于这个例子,它会是姓氏吗?

<table style="width:100%">
<tr>
<th>Firstname</th>
<th>Lastname</th>
<th>Points</th>
</tr>
<tr>
<td>Eve</td>
<td>Jackson</td>
<td>94</td>
</tr>
</table>

CSS:

tbody tr:hover td.text-left {
background-color: #0062a2 !important;
}

谢谢

最佳答案

你可以获取悬停的tdindex,然后找到具有相同索引的相关th,像这样:

$('table tr td').hover(function() {
$('table tr th').eq($(this).index()).add(this).toggleClass('hover');
});

Example fiddle

关于jquery - TD :hover which highlights the th for that td,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27863153/

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