我试图遍历表格的单元格(针对特定行)并更改单元格的值。单元格元素(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时替换每个单元格的内容?
答案 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");
});
})