jQuery 从列表中拖动(不删除元素)并放入另一个列表
我怎样才能有两个列表(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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你应该看看jquery sortable。 connectWith 选项用于连接另一个可排序列表,以便您可以将其拖放到那个清单。
you should look at jquery sortable. connectWith option is used to connect with another sortable list so you can drop it to that list.
看看 此链接...这不完全是您想要的,但我认为它会让你走上正轨。该示例的性能与您的要求类似。
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.