我尝试在两个HTML列表之间切换元素。在第一个列表中,新元素必须位于列表的末尾。我使用jQuery .appendTo()
方法添加元素,使用.remove()
删除元素。在第二个列表中,每个元素都必须保留在原位,因此我使用.hide()
和.show()
。
这是我的HTML列表:
List 1
<ul id="l1"></ul>
List 2
<ul id="l2"></ul>
我的一个列表中的元素如下所示:<li>Element - <span>remove</span></li>
我向span
添加一个处理程序,以从列表中删除该元素并将其添加到另一个列表中。
let ul1 = $("ul#l1"),
ul2 = $("ul#l2"),
lis = ["ga", "bu", "zo", "meu"];
lis.forEach(function(e){
let li1 = $("<li>" + e + "- </li>"),
sp1 = $("<span>remove</span>"),
li2 = $("<li>" + e + "- </li>"),
sp2 = $("<span>hide</span>");
sp1.appendTo(li1);
li1.appendTo(ul1);
sp2.appendTo(li2);
li2.appendTo(ul2);
li2.hide();
// switching the element from the list 1 to the list 2
sp1.on("click", function(){
li2.show();
li1.remove();
});
// switching the element from the list 2 to the list 1
sp2.click(function(){
li2.hide();
li1.appendTo(ul1);
});
});
问题是,在将元素重新添加到第一个列表后,处理程序似乎已经消失了。我以与第一次相同的方式添加此元素。
为什么.click()
处理程序第二次消失了? .remove()
方法是否删除了子对象的处理程序?
答案 0 :(得分:1)
根据jquery doc
https://api.jquery.com/remove/
与元素关联的所有绑定事件和jQuery数据 除去。要删除元素而不删除数据和事件,请使用 .detach()代替。