gpt4 book ai didi

jquery - 使用 jquery 在列上添加颜色

转载 作者:行者123 更新时间:2023-11-28 16:45:01 25 4
gpt4 key购买 nike

如何使用 jquery 在表格的奇数列上添加 css 类?

我的代码是:

$("table columns:odd").addClass("colors");

最佳答案

你必须在你的表中定位 td 标签,你必须使用 nth-childodd:

$("table td:nth-child(odd)").addClass("colors");

你也可以做得更简单:

$("table td:odd").addClass("colors");

关于jquery - 使用 jquery 在列上添加颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33306846/

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