我有一张桌子,我想向它添加一个新行,但它不起作用我想复制它的第一行,因为它就像新行的模板,然后我想将它附加到正文但由于某种原因它不起作用,即使我没有收到任何错误这里是我的代码:
// getting the body of the table
var tableBody = document.getElementById("tableBody");
// getting the row template
var newRow = document.getElementById("tableRow").cloneNode(true);
// trying to add it
tableBody.appendChild(newRow);
PIPIONE
相关分类