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

发布于 2024-07-12 23:38:25 字数 96 浏览 14 评论 0原文

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

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.

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

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

发布评论

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

评论(1

泪之魂 2024-07-19 23:38:28

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

做了这样的事情:

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

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

and its done something like this:

$(function() {
        $("#sortable1, #sortable2").sortable({
            connectWith: ['.connectedSortable']
        });
    });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文