gpt4 book ai didi

jquery - 如何使函数不突出显示表中的最后一行?

转载 作者:行者123 更新时间:2023-12-01 07:12:07 24 4
gpt4 key购买 nike

我有一个函数可以突出显示表格中的每一行(CSS代码)

.stripe1 {
background-color:#999999;
}
.stripe2 {
background-color:#666666;
}
.highlight {
background-color: #ffcc66;
font-weight:bold;
}


<script type="text/javascript">
$(function() {
$("#table-example-1 tr:even").addClass("stripe1");
$("#table-example-1 tr:odd").addClass("stripe2");

$("#table-example-1 tr").hover(
function() {
$(this).toggleClass("highlight");
},
function() {
$(this).toggleClass("highlight");
}
);
});
</script>

只有表中的最后一行 tfoot 效果很好我希望它是不同的颜色(红色)。

我怎样才能做到这一点?我做了一个http://jsfiddle.net/pd981Lps/ ,稍微改变一下我的代码,使思考更容易阅读。

最佳答案

将选择器更改为目标 tbody:$("#table-example-1 tbody tr")

关于jquery - 如何使函数不突出显示表中的最后一行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25312992/

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