SortableJS 拖动插件 (备忘)

175 篇文章 1 订阅
139 篇文章 0 订阅


1、Sortable.js中文网 (Demo、配置参数说明)
http://www.sortablejs.com/

2、元素拖拽排序  (Grid 形式示例)
https://www.jianshu.com/p/a82bca95c140

 3 、angular table拖拽插件sortablejs 
https://blog.csdn.net/weixin_38883338/article/details/103378958

4、Angular 引入第三方js库
https://blog.csdn.net/weixin_38883338/article/details/103797669

5、Sortable.js笔记
https://www.cnblogs.com/OrochiZ-/p/15760502.html

6、使用sortablejs复原上次移动
https://www.jianshu.com/p/64e1adc224e3

     // 在Sortable.create的onEnd回调函数中添加代码
     onEnd(evt) {
         const oldIndex = evt.oldIndex;
         const newIndex = evt.newIndex;

         // 拖拽之后改变数据(非必要)
         const list = tableData;
         const oldItem = list.splice(oldIndex, 1)[0];
         list.splice(newIndex, 0 , oldItem);

         // 拖拽之后改变数据结束
         if (...需要复原的条件) {
             // 复原拖拽之前的 数据(非必要)
             const item = list.splice(newIndex, 1)[0];
             list.splice(oldIndex, 0, item);

             // 复原拖拽之前的 dom
             const tagName = evt.item.tagName;
             const items = evt.from.getElementsByTagName(tagName);
             if (evt.oldIndex > evt.newIndex) {
               evt.from.insertBefore(evt.item, items[evt.oldIndex+1]);
             } else {
               evt.from.insertBefore(evt.item, items[evt.oldIndex]);
             }
         }
       }
     }

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值