我需要从元素中删除一些 html 并将该 html 插入页面上的新位置。
我的尝试(已注释掉)不起作用。
HTML:
<ul>
<li>Hello</li>
<li class="bye">Bye</li>
</ul>
<div id="new-html"></div>
jQuery:
$('ul').find('.bye').remove().appendTo('new-html');
或者
$('ul').find('.bye').remove().clone().appendTo('new-html');