2
我有一個div,裏面有一些元素。我想要的是使用j查詢創建一個圍繞該div的包裝div。將div封入包裝div
<div id="foo">
<input type="text">
<input type="button">
</div>
我需要上面的代碼如下所示
<div class="wrapper">
<div id="foo">
<input type="text">
<input type="button">
</div>
</div>
http://api.jquery.com/wrap/ – Mahi