有没有一种简单的方法可以将元素移动到它自己的父元素中?
像这样...
从:
<div class="test">hello 1</div>
<div class="test">hello 2</div>
<div class="test">hello 3</div>
到:
<div class="test">hello 1</div>
<div class="test">hello 3</div>
<div class="test">hello 2</div>
将 div 向上或向下移动一步,或使用索引将 appendTo 附加到特定位置。