var table = document.getElementById("table-body");
var row = table.insertRow(-1);
var cell1 = row.insertCell(0);
var cell2 = row.insertCell(1);
var cell3 = row.insertCell(2);
var cell4 = row.insertCell(3);
cell1.innerHTML = ingredient_name;
cell2.innerHTML = ingredient_amount;
cell3.innerHTML = ingredient_unit;
cell4.innerHTML = '<button type="button" class="close" aria-.hidden="true"onClick="$(this).closest(\'tr\').remove()">&times;</button>';


如何设置刚创建的行或表的ID?

最佳答案

您只需设置新dom元素引用的id属性

row.id='newid';
cell1.id='cellid1'
....

关于javascript - 如何设置新创建的表行或单元格的ID?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21921859/

10-17 02:28