如何将图像拖放到容器中,然后根据拖入的内容更新容器?
我希望能够将图像拖到两个容器之一(容器 1 和容器 2)中。从那里,根据图像被删除到哪个容器,我想通过数据库调用更新该容器(或者只更新我的一个表中的一行)。
我想使用 http://jqueryui.com/demos/droppable/ 来实现此目的,但我不确定如何处理请求,以及如何让每个容器侦听事件处理程序(删除图像)。
我在下面画了一个非常糟糕的图表来解释我的意思:
I'd like to be able to drag an image into one of two containers (container 1 and container 2). From there, depending on which container the image was dropped to, I'd like to update that container with a database call (or just update a row in one of my tables).
I'd like to use http://jqueryui.com/demos/droppable/ to achieve this, but I'm not sure how to process the request, and how to get each container to listen for an event handler (dropping of the image).
I've drawn a really bad diagram below to explain what I mean:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
droppable 演示 准确地展示了如何执行此类操作。
我自己的非常基本的演示→(更新)
The droppable demo shows exactly how to do this sort of thing.
My own really basic demo → (updated)