haimishasha
$("table tr:gt(0)").each(function(i){
    alert("这是第"+i+"行内容");
    $(this).children("td").each(function(i){
        alert("第"+i+"个td的内容:"+$(this).text());
    });
});

 

分类:

技术点:

相关文章:

  • 2021-11-02
  • 2021-09-07
  • 2022-02-25
  • 2021-06-11
  • 2021-09-07
  • 2021-08-28
  • 2022-12-23
猜你喜欢
  • 2021-09-07
  • 2021-09-07
  • 2021-11-08
  • 2021-09-07
  • 2021-09-07
  • 2022-12-23
  • 2021-12-29
相关资源
相似解决方案