sortable.js中文文档

sortable.js dragClass 拖拽对象移动样式

通过dragClass属性设置拖拽对象移动样式,需要注意的是css可能需要!important属性进行覆盖同时设置forceFallback: true禁用html5原生拖拽。

ghostClass属性

属性名称类型说明
dragClassstring指定class样式名称,如dragClass:"drag"

代码例子

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8" />
    <title>sortable.js dragClass属性例子</title>
    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no, minimal-ui">
    <script src="https://www.itxst.com/package/sortable/sortable.min.js"></script>
    <style>
        .itxst {
            margin: 10px auto;
            width: 80%;
            float: left;
            margin-right: 10px;
        }
        .itxst div {
            padding: 6px;
            background-color: #fdfdfd;
            border: solid 1px #eee;
            margin-bottom: 10px;
            cursor: move;
        }
        #msg {
            clear: both;
            width: 100%;
        }
        .ghost {
            background-color: red !important;
        }
        .drag {
            background: #000 !important;
            background-image: linear-gradient(#333, #999) !important;
        }
    </style>
</head>
<body>
    <div class="box">
        <div id="g1" class="itxst">
            <div>dragClass 拖动对象的样式</div>
            <div class="item" data-no="1">item 1</div>
            <div class="item" data-no="2">item 2</div>
            <div class="item" data-no="3">item 3</div>
        </div>
    </div>
    <div id="msg"></div>
    <script>
        //第一组
        var g1 = document.getElementById('g1');
        var ops1 = {
            animation: 1000,
            //指定可以拖动的元素
            draggable: ".item",
            //拖动后的数据
            dataIdAttr: "data-no",
            //停靠位置样式
            ghostClass: "ghost",
            //************* 拖动对象移动样式
            dragClass: 'drag',
            //************* 禁用html5原生拖拽行为
            forceFallback: true,
            //获取拖动结束的数据
            onEnd: function (evt) {
                console.log(evt);
                //获取拖动后的排序
                var arr = sortable1.toArray();
                document.getElementById("msg").innerHTML = "A组排序结果:" + JSON.stringify(arr);
            },
        };
        var sortable1 = Sortable.create(g1, ops1);
    </script>
</body>
</html>
Catalog
快速入门 常用例子 对table表格拖动排序 多组间相互拖动排序 属性列表 group 多组之间拖动 sort 是否允许组内排序 delay 延迟多久允许拖动 delayOnTouchOnly 属性 animation 动画 handle 指定拖拽句柄 filter 过滤或忽略指定元素 dataIdAttr 获取排序后数据 ghostClass 自定义停靠位置样式 draggable 指定样式 dragClass 拖拽对象移动样式 chosenClass 选中对象样式 事件列表 onChoose 选中事件 onStart 开始拖动事件 onUnchoose 取消选中事件 onEnd 拖动结束事件 onAdd 多组新增元素事件 onUpdate 位置更改事件 onSort 拖拽位置改变事件 onRemove 从组移除事件 onMove 拖拽中的事件 onClone 克隆事件 onChange 拖拽中位置改变事件