多应用+插件架构,代码干净,支持一键云编译,码云点赞13K star,4.8-4.12 预售价格198元 广告
[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(); }); ```