1、使用eq(index)来指定某行,使用each(function(){})来获取每列值2、代码:$('.tb tr').eq(2).find("td")找到指定行,在找到td元素遍历$('.tb tr').eq(2).find("td").each(function () { alert($(this).text());//弹出值});