遍历表格的某一列

$('#sample_1 tr').find('td').each(function(){
    
    if ($(this).index() == "3") { // 要获取第4列的值
        alert($(this).text());
    }
 });

  

原文地址:https://www.cnblogs.com/zwhbk/p/6278872.html