列中的所有单元格

列中的所有单元格

如何选择普通 html 表格的第 n 列中的所有单元格。香港专业教育学院尝试过,但不能正常工作:

    $('table#foo tbody td:nth-child(3)').each(function (index) {
        $(this).addClass('hover');
    });

更新:
这是无法正常工作的代码的jsfiddle:http://jsfiddle.net/Claudius/D5KMq/

最佳答案

无需为此使用 each

$('table#foo tbody td:nth-child(3)').addClass('hover');

除此之外,您的代码没有任何问题。问题一定出在其他地方。

10-07 17:45