$('table tr td:not(:first-child)').css('background', '#000');
获取所有td,但是这个td不包含第一个子元素
单独获取一个列
// 获取第三列$('table tr td:nth-child(3)').css('background', '#000');
$("tbody tr:eq(3)") //第三行$("tbody tr:eq(4)") //第四行
是列还是行?