我们正在使用以下代码创建一个可以通过按下按钮进行扩展的表单,但是我们在向输入字段添加唯一名称时遇到了麻烦。我们让它添加了一个唯一的 ID,但是当我们将其更改为名称时它停止工作。帮助?:( 非常感谢您的任何建议。
var counter = 0
function cloneRow() {
counter ++;
var row = document.getElementById("rowToClone"); // find row to copy
var table = document.getElementById("tableToModify"); // find table to append to
var clone = row.cloneNode(true); // copy children too
var theName= row.name;
clone.name = theName + counter++; // change id or other attributes/contents
table.appendChild(clone); // add new row to end of table
}