// 不分行$('table td').each(function (i, td) { console.log(td.innerText);})// 分行$('table tr').each(function (i, tr) { // 这里获取tr下面的td,同理循环})