💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
[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(); }); ```