🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
[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(); }); ```