jQuery 从列表中拖动(不删除元素)并放入另一个列表

发布于 2024-08-05 02:34:24 字数 403 浏览 4 评论 0原文

我怎样才能有两个列表(div 或 table 元素),我可以在其中拖动和拖动?将项目从一个项目删除到另一个项目(我认为 jQuery droppable 可以做到这一点),但是没有实际将其从源列表中删除

示例:

List1    List2
 AAA     111
 BBB     555
 CCC     999
 DDD     777

现在我将 BBB 从左向右拖动到“555”和“999”之间。结果(查看 BBB 现在两者的情况:

List1    List2
 AAA     111
 BBB     555
 CCC     BBB
 DDD     999
         777

How can I have two lists (div or table elements) in which I can drag & drop items from one to the other (I think jQuery droppable does this), but without actually removing it from the source list?

Example:

List1    List2
 AAA     111
 BBB     555
 CCC     999
 DDD     777

Now I'm dragging BBB from the left to the right between "555" and "999". Result (see how BBB is now in both:

List1    List2
 AAA     111
 BBB     555
 CCC     BBB
 DDD     999
         777

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

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

发布评论

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

评论(3

情仇皆在手 2024-08-12 02:34:24

你应该看看jquery sortableconnectWith 选项用于连接另一个可排序列表,以便您可以将其拖放到那个清单。

you should look at jquery sortable. connectWith option is used to connect with another sortable list so you can drop it to that list.

允世 2024-08-12 02:34:24

看看 此链接...这不完全是您想要的,但我认为它会让你走上正轨。该示例的性能与您的要求类似。

Take a look at this link... it's not EXACTLY what you want, but I think it will get you on the right track. The example performs similarly to your requirements.

猫烠⑼条掵仅有一顆心 2024-08-12 02:34:24
drop: function(event, ui) {
         $(this);
         $(ui.draggable.**clone()**).appendTo($(this));
      }
drop: function(event, ui) {
         $(this);
         $(ui.draggable.**clone()**).appendTo($(this));
      }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文