5

好的,我正在尝试使用RubaXa 的 Sortable 插件。(这是一个很好的示例页面

    var sort = new Sortable($('#items')[0], {
        animation: 150,

        onUpdate: function(evt/**Event*/){
            var item = evt.item;
            console.log(evt);
        }
    });

该插件工作正常。问题是我怎样才能获得元素被删除的索引?(例如从列表的索引 2 到索引 0)

演示:http: //jsfiddle.net/j7fesLkp/1/

4

1 回答 1

7

The event that's passed to onSort has the fields you need: oldIndex and newIndex:

var sort = new Sortable(items, {
    onSort: function (evt) {
        console.log(evt.oldIndex + ' -> ' + evt.newIndex);
    }
});
<!-- Sortable -->
<script src="https://rawgit.com/RubaXa/Sortable/dev/Sortable.js"></script>

<ul id="items">
    <li data-id="1">item 1</li>
    <li data-id="2">item 2</li>
    <li data-id="3">item 3</li>
    <li data-id="4">item 4</li>
    <li data-id="5">item 5</li>
</ul>

于 2014-11-11T18:01:36.927 回答