问题
HTML:
<div id="test">
<p class="test1">test 1</p>
<p class="test2">test 2</p>
<p class="test3">test 3</p>
<p class="test4">test 4</p>
</div>
<div class="clickdiv">click</div>
jQuery
$('.clickdiv').on('click', function(){
$('.test1').clone().appendTo('#test');
}
This will result one more <p>
with class = "test1"
. Now how can I remove the original one that is first one?
回答1:
I don't know why you can't just append the element to the parent, instead of cloning it then removing it.
Anyway
$('.test1').remove().clone().appendTo('#test');
Demo: Fiddle
If you want to copy the data and handlers associated with test1
to the clone then @ra_htial with a minor change have to be used
$('.clickdiv').on('click', function () {
var $el = $('.test1');
$el.clone(true).appendTo('#test');
$el.remove();
});
Demo: Fiddle
回答2:
$('.clickdiv').on('click', function(){
var test1 =$('.test1');
test1.clone().appendTo('#test');
test1.remove();
}
来源:https://stackoverflow.com/questions/18735935/how-to-remove-original-element-after-it-was-cloned