如何使用 jQuery Draggable 将图像复制到表格中?

发布于 2024-11-26 15:19:31 字数 255 浏览 0 评论 0原文

我有一个图像列表和一个空表格,

我需要能够将图像拖到空表格单元格中,并将该图像复制(而不是移动)到新单元格中。

Sortable 几乎为我解决了这个问题,但它不会取代现有的单元格。

这是我目前正在做的演示: http://simonwjackson.com/demos/bti /demo.html

I have a list of images, and an empty table

I need to be able to drag an image over to an empty table cell and have that image be copied (not moved) into the new cell.

Sortable almost took care of this for me, but it wont replace the existing cell.

Here is the demo of what I am currently working on: http://simonwjackson.com/demos/bti/demo.html

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

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

发布评论

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

评论(1

挽清梦 2024-12-03 15:19:31

如果您使用 jqueryui,您可以在可拖动项目上设置一个属性,使其克隆而不是移动。

$(".items").draggable({
    helper: "clone"
});

If you are using jqueryui, you can set a property on your draggable item to make it clone instead of move.

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