当前位置:  开发笔记 > 编程语言 > 正文

JS删除最后一个孩子?

如何解决《JS删除最后一个孩子?》经验,为你挑选了1个好方法。

当我添加一些> select> ex.SELECT_country,SELECT_country1,SELECT_country2我想按照从最新到最旧的顺序删除它们.但它正在从最旧的一个移到最新的一个.我以为SELECT_country是父母,我将删除他的孩子.但是父母先走了.我怎么能改变它?

var j = 0;

function add_country() {
    j++;
    var select = document.getElementById("SELECT_country");
    var clone = select.cloneNode(true);
    clone.setAttribute("id", "SELECT_country" + j);
    clone.setAttribute("name", "country" + j);
    document.getElementById("DIV_country").appendChild(clone);
}

function remove_country() {
    var select = document.getElementById('SELECT_country');
    select.parentNode.removeChild(select);
}

Miguel Mota.. 17

由于要附加新元素,因此lastChild如果要将它们从最新到最旧删除,则需要使用最后一个元素.

function remove_country() {
  var select = document.getElementById('DIV_country');
  select.removeChild(select.lastChild);
}

JSFiddle演示:https://jsfiddle.net/rrkroxcb/1/



1> Miguel Mota..:

由于要附加新元素,因此lastChild如果要将它们从最新到最旧删除,则需要使用最后一个元素.

function remove_country() {
  var select = document.getElementById('DIV_country');
  select.removeChild(select.lastChild);
}

JSFiddle演示:https://jsfiddle.net/rrkroxcb/1/

推荐阅读
mobiledu2402851373
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有