0
所以我有這個標記:如何使用jQuery將每4個元素移動到另一個容器?
<section class="oldContainer">
<article></article>
<article></article>
<article></article>
<article></article>
<article></article>
<article></article>
</section>
<section class="newContainer"></section>
<section class="newContainer"></section>
而且我想所有<article>'s
從oldContainer
移動到newContainer
,但這樣的newContainer
可以有不超過4 <article>'s
每個。這怎麼能用jQuery來完成?我只知道如何包裝元素在這種情況下,而不是將它們移動:)
從'oldcontainer'獲取所有元素,迭代它們,爲'newContainer'創建html,'從oldcontainer'移除'',並在'newContainer'中插入 –