Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
<ul> <li>first children</li> <li>second children</li> <li>third children</li> </ul>
如何使用 Jquery 删除第一个孩子并将其附加到 ul 列表的末尾?
有许多方法可以使用,例如appendTo方法。
appendTo
$('ul li:first').appendTo('ul');
http://jsfiddle.net/Mb42Z/
或insertAfter方法:
insertAfter
var $li = $('ul li'); $li.eq(0).insertAfter($li.last())
请注意,元素被移动而不是被移除。
您可以使用:
var lis = $('ul li'); lis.first().insertAfter(lis.last());