JQuery 遍历表格

$("#insuranceCodeTable").find("tr).each(function () {
  //第1列单元格的值eq(索引)
  alert($(this).children('td:eq(0)').text());
}); 

原文地址:https://www.cnblogs.com/dark-passion/p/7910330.html