从一个列表中拖放jQuery UI可拖动元素并将其放入另一个列表中的问题

时间:2022-12-06 15:44:47

I am using jQuery UI and can create an simple drag 'n drop list. But now, I want to drop the element into an other list. jQuery always thinks the item has been droppen on the false place and slides it back into the origin list.

我正在使用jQuery UI,可以创建一个简单的拖放列表。但是现在,我想把元素放到另一个列表中。 jQuery总是认为该项目已经丢弃在错误的地方并将其滑回原始列表。

1 个解决方案

#1


I think the solution is found here: http://ui.jquery.com/demos/sortable/#connect-lists

我认为解决方案可以在这里找到:http://ui.jquery.com/demos/sortable/#connect-lists

and its done something like this:

它完成了这样的事情:

$(function() {
        $("#sortable1, #sortable2").sortable({
            connectWith: ['.connectedSortable']
        });
    });

#1


I think the solution is found here: http://ui.jquery.com/demos/sortable/#connect-lists

我认为解决方案可以在这里找到:http://ui.jquery.com/demos/sortable/#connect-lists

and its done something like this:

它完成了这样的事情:

$(function() {
        $("#sortable1, #sortable2").sortable({
            connectWith: ['.connectedSortable']
        });
    });