我在我的 Web 应用程序中使用 jQuery 的拖放功能。我希望能够将我的项目放在下面的 div 中,但让它们出现在其他内容之上。
我要放置物品的 div:
<div id="viewbuilder" class="module">
<h3>View Builder</h3>
<!-- This is where I want my dropped items to show -->
<div class="ends_module">
<a href="#" class="button"> Build </a>
</div>
<div> </div><!--ClearFix -->
<!-- This is where the dropped items are currently showing -->
</div>
以下是我认为导致问题的 jQuery 部分:
var $list = $("ul", $viewbuilder).length ?
$("ul", $viewbuilder) :
$("<ul class='results ui-helper-reset'/>").appendTo($viewbuilder);
是否有另一种将内容放入 div 的方法,这会产生与追加相反的效果?也许,追加为 div.module 的第一个孩子?