使用 jquery 在列上添加颜色

Add color on column with jquery

如何在 table 和 jquery 的奇数列上添加 css class?

我的代码是:

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

您必须在 table 内定位 td 标签,并且必须将 nth-childodd 一起使用:

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

你也可以做的更简单:

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

Here's a fiddle