例如,如果我有这个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>