gpt4 book ai didi

jquery - 使用 jquery 突出显示表格行和列

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

Script在这里用于使用 jquery 突出显示表行和列。 Demo Here

悬停时它会突出显示整行和整列。我只想将鼠标悬停到当前单元格,而不是超出当前单元格的行和列位置。

脚本

$("table").delegate('td','mouseover mouseleave', function(e) {
if (e.type == 'mouseover') {
$(this).parent().addClass("hover");
$("colgroup").eq($(this).index()).addClass("hover");
}
else {
$(this).parent().removeClass("hover");
$("colgroup").eq($(this).index()).removeClass("hover");
}
});

有什么帮助吗?

JS Fiddle

最佳答案

您可以尝试以下代码:

HTML:

<table>
<tr><td></td><td></td><td></td></tr>
<tr><td></td><td></td><td></td></tr>
<tr><td></td><td></td><td></td></tr>
<tr><td></td><td></td><td></td></tr>
<tr><td></td><td></td><td></td></tr>
</table>

JS:

$('td').on('mouseover mouseout', function(){
$(this).prevAll().addBack()
.add($(this).parent().prevAll()
.children(':nth-child(' + ($(this).index() + 1) + ')'))
.toggleClass('hover');
});

Demo.

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

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