ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
[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(); }); ```