将元素添加到容器中

解决方案 1:

 $('#parent').prepend($('#child')); 

解决方案 2:

 $('#child').prependTo($('#parent'));

两种解决方案都将元素 #child(在开头添加)添加到元素 #parent

之前:

<div id="parent">
  <span>other content</span>
</div>
<div id="child">

</div>

后:

<div id="parent">
  <div id="child">

  </div>
  <span>other content</span>
</div>