本文介绍了使用jquery sortable时如何重复项目?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我使用此方法来连接我拥有的两个列表。我想要能够从列表A拖到列表B,但是当项目被删除时,我需要保留原来的一个仍然在列表A中。我检查了选项和事件,但我相信没有这样的。任何方法?

I am using this method http://jqueryui.com/demos/sortable/#connect-lists to connect two lists that i have. I want to be able to drag from list A to list B but when the item is dropped, i need to keep the original one still in list A. I checked the options and events but I believe there is nothing like that. Any approaches?

推荐答案

一开始,,并阅读@Erez答案。

For a beginning, have a look at this, and read @Erez answer, too.

    $(function() {
        $( "#sortable1" ).sortable({
            connectWith: ".connectedSortable",
            remove: function(event, ui) {
                ui.item.clone().appendTo('#sortable2');
                $(this).sortable('cancel');
            }
        }).disableSelection();

    $( "#sortable2" ).sortable({
            connectWith: ".connectedSortable"
        }).disableSelection();
    });

这篇关于使用jquery sortable时如何重复项目?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-15 15:35