-6

例如,如果我有这个 html:

<div class="wrapper">
    <div id="one"></div>
    <div id="two">this is the div i want to move</div>
    <div id="three"></div>
    <div id="four"></div>
</div>

如何在所有其他 div 之后移动 id 为“two”的 div,以便我的 html 变为:

<div class="wrapper">
    <div id="one"></div>
    <div id="three"></div>
    <div id="four"></div>
    <div id="two">this is the div i want to move</div>
</div>
4

2 回答 2

1

这必须有效:

$("#two").appendTo(".wrapper");

这也必须有效:

$(".wrapper").append($("#two"));

append并且appendTo被认为是 jQuery 中的移动函数。您必须更多地查看文档。

演示:http: //jsfiddle.net/hungerpain/gjJJe/

于 2013-07-24T17:09:11.443 回答
0

你可以试试这个:

$("#two").appendTo(".wrapper")

示例:http: //jsfiddle.net/SbeDN/

于 2013-07-24T17:10:40.057 回答