table获取某一列的td

   $("#proDetailsList tbody tr").each(function () {
        var price = $(this).children("td").eq(6).children().text();
        price = Number(price);
        sumPrice += price;
    });
    $("#sumPrice").text(sumPrice);

原文地址:https://www.cnblogs.com/wangtiantian/p/5026658.html