6

我正在尝试制作一个包含多行的表格,每行在最后一个单元格中都有一个按钮,用于创建该行的副本。

所有其他单元格都包含一个输入(文本)。添加的输入的内容(值)必须与上面的相同(它们是它们的副本)。

但是副本不能复制!


输入必须具有唯一的名称,例如:
1-1-name
1-1-age
1-1-country
1-1-email

如果此行被复制,则复制的输入必须具有这样
的名称 1-2-name
1-2-age
1-2-country
1-2-email

下一个用 3 而不是 2,依此类推。


我想,这个问题是我必须在没有 JQuery 的情况下这样做。我只能使用 Javascript。这甚至可能吗?

4

2 回答 2

4

看看这个小提琴。这是复制表格行并增加其 ID 的纯 js(非 jQuery)方法:

var idInit;
var table = document.getElementById('theTable');
    table.addEventListener('click', duplicateRow);  // Make the table listen to "Click" events

function duplicateRow(e){
    if(e.target.type == "button"){ // "If a button was clicked"
        var row = e.target.parentElement.parentElement; // Get the row
        var newRow = row.cloneNode(true); // Clone the row

        incrementId(newRow); // Increment the row's ID
        var cells = newRow.cells;
        for(var i = 0; i < cells.length; i++){
            incrementId(cells[i]); // Increment the cells' IDs
        }
        insertAfter(row, newRow); // Insert the row at the right position
        idInit++;
    }
}

function incrementId(elem){
    idParts = elem.id.split('-'); // Cut up the element's ID to get the second part.
    idInit ? idParts[1] = idInit + 1 : idInit = idParts[1]++;  // Increment the ID, and set a temp variable to keep track of the id's.
    elem.id = idParts.join('-'); // Set the new id to the element.
}

function insertAfter(after, newNode){
    after.parentNode.insertBefore(newNode, after.nextSibling);
}​
<table id="theTable">
    <tr id="1-1">
        <td id="1-1-name"><input type="text"/></td>
        <td id="1-1-age"><input type="text"/></td>
        <td id="1-1-country"><input type="text"/></td>
        <td id="1-1-email"><input type="text"/></td>
        <td id="1-1-button"><input type="button" value="Copy"/></td>
    </tr>
</table>​

编辑:更新为在单击的行之后插入新行。现在有按钮和输入!

于 2012-12-07T14:17:31.260 回答
0

是的,这是可能的,您应该创建一个新表格 row ,然后将其 innerHTML 设置为上面行的 innerHTML。

jQuery 是一个 JavaScript 库,这意味着它是用 JavaScript 函数构建的。

所以你可以用 jQuery 做的所有事情,你也可以用 JavaScript 做。

莱昂

于 2012-12-07T13:48:16.783 回答