排序
最后更新于:2022-04-02 03:14:05
[TOC]
## 排序
```
$(function () {
$("#sortable").sortable({
stop:function(){
var orderArr=[];
$(this).children("li").each(function(){
orderArr.push($(this).data("order"))
console.log(orderArr); //[1, 3, 2, 4, 5, 7, 6]
})
}
});
$("#sortable").disableSelection();
});
```
';