<ul id="box">
<li id="1">1</li>
<li id="2">2</li>
</ul>
$("#box").sortable({ update: function() {
var order = $("#box").sortable("serialize");
alert(order);
}
});
如何在不使用sortable的情况下在order变量中得到相同的结果?
答案 0 :(得分:0)
chang <ul> to <ol>
,因为ul表示不可分类的列表