gpt4 book ai didi

jquery - 使用 css 样式而不是 jQuery

转载 作者:行者123 更新时间:2023-11-28 15:35:55 25 4
gpt4 key购买 nike

我遇到过这段代码:

$("#customTable tr:nth-child(odd)").addClass("newColour");

这会为表格的每个奇数行着色。

如何在 css 中处理而不是使用 jQuery 来执行它?

最佳答案

#customTable tr:nth-child(odd) { 
background-color:#eee;
}
#customTable tr:nth-child(even) {
background-color:#fff;
}

jsFiddle example

关于jquery - 使用 css 样式而不是 jQuery,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11762528/

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