我想将$(this).parent()
追加到另一个div中,然后删除$this
元素
我能够成功删除$this
元素。但是.append($(this).parent())
似乎是一种错误的做法而且没有用。我想在删除$this
元素之前将精确副本复制到另一个div中。
转载问题陈述: https://jsfiddle.net/rvgo3Luc/
答案 0 :(得分:0)
使用clone()
复制元素,然后附加克隆元素。
$("#button").on("click", function(){
console.log($(this).parent());
// I have to copy this element into say a new div and remove this present element.
// How to append $(this).parent()
$("#a").append($(this).parent().clone());
$(this).remove();
})
<强> JSFIDDLE 强>