我想在我的应用程序中使用UI Sortable进行绝对定位。请帮帮我。
我有一些自己的位置列表元素,如:
<div class="sort">
<div class="list" style="top:0px; height:30px;">List 01</div>
<div class="list" style="top:35px; height:50px;">List 02</div>
<div class="list" style="top:90px; height:80px;">List 03</div>
<div class="list" style="top:175px; height:60px;">List 04</div>
<div class="list" style="top:240px; height:30px;">List 05</div>
</div>
它从上到下有自己的位置。我需要它应该可以排序。
$(function(){
$('.sort').sortable();
});
一旦我们排序顶部位置应该以元素样式更新。