在javascript中删除表行的所有克隆节点

发布于 2024-12-02 10:35:09 字数 417 浏览 1 评论 0原文

function newRow(t) {

    var parent = t.parentNode.parentNode.parentNode;

    var row = t.parentNode.parentNode.cloneNode(true);

    row.firstChild.nextSibling.firstChild.setAttribute('value', 'sumit');

    parent.appendChild(row);

}

function removeRow(t) {

    var y = t.parentNode.parentNode;
    y.parentNode.removeChild(y);

}

上面的代码工作正常,但我想立即删除上面代码在选择框的 onchange 事件上创建的所有克隆

function newRow(t) {

    var parent = t.parentNode.parentNode.parentNode;

    var row = t.parentNode.parentNode.cloneNode(true);

    row.firstChild.nextSibling.firstChild.setAttribute('value', 'sumit');

    parent.appendChild(row);

}

function removeRow(t) {

    var y = t.parentNode.parentNode;
    y.parentNode.removeChild(y);

}

the above code is working fine but i want to delete all the clones at once which are created by above code on a onchange event of a select box

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

岁月打碎记忆 2024-12-09 10:35:09

只需向克隆元素添加一个类名,这样您就可以搜索它们并稍后删除它们:

var row = t.parentNode.parentNode.cloneNode(true);
row.className += ' clonedrow';
...

// Remove all the cloned rows
var clonedRows = document.querySelectorAll('.clonedrow');
for (var i = 0; i < clonedRows.length; i++) {
  clonedRows[i].parentNode.removeChild(clonedRows[i]);
}

Just add a class name to the cloned elements which would allow you to search for them and delete them later:

var row = t.parentNode.parentNode.cloneNode(true);
row.className += ' clonedrow';
...

// Remove all the cloned rows
var clonedRows = document.querySelectorAll('.clonedrow');
for (var i = 0; i < clonedRows.length; i++) {
  clonedRows[i].parentNode.removeChild(clonedRows[i]);
}
恋竹姑娘 2024-12-09 10:35:09

将克隆行添加到 DOM 后,它们(对于 JavaScript)看起来就像原始行一样。

由于您只是将克隆的行附加到表主体,所以我要做的如下:

  • 在函数之外,一旦文档加载,就使用 .childNodes.length 获取行数并将其全局存储在 lastpos 中。
  • 当您需要删除克隆时,请从 .childNodes[lastpos] 开始并删除节点,直到表再次出现 lastpos 行。

Once the cloned rows have been added to the DOM, they look (to JavaScript) just like the original rows.

Since you're just appending cloned rows to the table body, what I would do is as follows:

  • Outside the functions, as soon as the document loads, use .childNodes.length to get the number of rows in your table and store it globally in, say, lastpos.
  • When you need to delete the clones, start at .childNodes[lastpos] and remove nodes until the table has lastpos rows again.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文