如何将两个列表合并为可拖动、可放置和可排序?

发布于 2024-12-08 12:16:31 字数 676 浏览 0 评论 0原文

我有两个清单。开始时,只有第一个列表具有可见元素,第二个列表仅以一个隐藏元素开始。当我拖动时,我会搜索空列表以查找是否只有一个元素以及它是否通过 CSS 隐藏。如果是这样,我从源列表中删除该元素并将其添加到第二个列表中。另外,我需要第二个列表可以排序,但目前下面显示的代码不起作用。

$(function(){
    $( '.draggable_base_menu_item' ).draggable( {
        containment: '#submenu',
        stack: '#submenu ul li',
        cursor: 'move',
        revert: false,
        connectToSortable: '.droppable_menu_item_area'
    } );

    $( '.droppable_menu_item_area' ).sortable( {
        tolerance: 'pointer',
        items: 'li',
        receive: function( event, ui )
        {
            $(ui.draggable).appendTo( this );
        }
    } ).disableSelection();
});

任何人都可以提出任何建议吗?

I have two lists. At start only the first one has visible elements, the second list starts with only one hidden element. When I drag, I search empty list to find if there is only one element and if it's hidden through CSS. If so, I remove the element from the source list and add it to the second one. Also I need second list to be sortable, but at the moment with the code shown below it doesn't work.

$(function(){
    $( '.draggable_base_menu_item' ).draggable( {
        containment: '#submenu',
        stack: '#submenu ul li',
        cursor: 'move',
        revert: false,
        connectToSortable: '.droppable_menu_item_area'
    } );

    $( '.droppable_menu_item_area' ).sortable( {
        tolerance: 'pointer',
        items: 'li',
        receive: function( event, ui )
        {
            $(ui.draggable).appendTo( this );
        }
    } ).disableSelection();
});

Can anyone suggest anything?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

与君绝 2024-12-15 12:16:31

可排序已经是可拖动的。使用带有连接列表的可排序:

http://jqueryui.com/sortable/#connect-lists

Sortables are already draggables. Use sortables with connected lists:

http://jqueryui.com/sortable/#connect-lists

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文