如何使用 sortable.js 函式庫對清單進行排序? https://sortablejs.github.io/Sortable/
我在 tr 屬性上設定了 sortable_container(sortable_emploees id) 。這很好用。但如何同時對tbody中的td進行排序呢?
請看gif。 Tbody 不可排序。如何建立表格以拖放標題儲存格和正文儲存格。或者如何設定 sortable.js 來為我做到這一點?
檢查範例程式碼:
const el = document.getElementById('sortable_employees'); const sortable = new Sortable(el, { animation: 150, ghostClass: 'bg-blue-200', });
https://jsfiddle.net/mateuszbialowas/ds5bfj7v/27/
P粉7454121162024-02-04 00:12:31
您可以嘗試這種 div 方法。
Sortable.create(document.getElementById('draggableDivTable'), { sort: true, handle: '.columnHeader', animation: 150 });column 0c0 r0c0 r1c0 r2c0 r3c0 r4c0 r5column 1c1 r0c1 r1c1 r2c1 r3c1 r4c1 r5column 2c2 r0c2 r1c2 r2c2 r3c2 r4c2 r5
https://codepen.io/jlapinski/pen/ZXYERN