jquery 遍历table

$(“table”).find(“tr”).each(function(){
  $(this).find(“td”).each(function(){
    alert($(this).text());
  });
});

版权声明:本文为chinjohn原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://www.cnblogs.com/chinjohn/p/3980120.html