循环遍历表并更改单元格的内容

时间:2016-09-02 10:51:33

标签: jquery

我试图遍历表格的单元格(针对特定行)并更改单元格的值。单元格元素(td)或行元素(tr)没有任何类或id。

这就是我的所作所为:

$(document.body).on("click", "._cancel_btn",function(e){
  $(this).closest('tr').find('td').each (function() {
    var cellText = $(this).html();
    alert(cellText) // gives me the current value in td
  });

如何在迭代行的td时替换每个单元格的内容?

1 个答案:

答案 0 :(得分:0)

我会这样做:

$(document.body).on("click", "._cancel_btn",function(e){
  $(this).closest('tr').find('td').each (function() {
    var cellText = $(this).html();
    alert(cellText) // gives me the current value in td
    $(this).text("YOUR NEW TEXT");
  });
})