jQuery 可拖动和调用函数
我在网格中放置了一张游戏桌,我想将任何方块拖动到另一个方块,并调用一个函数。游戏方块必须有一个与其代表的游戏相对应的 id(或包含具有该 ID 的 div)。
我想将任何表格单元格拖动到任何其他表格单元格,并使用两个 ID 号调用 ajax 操作,这样我就可以交换游戏预订。
我不知道从哪里开始,也找不到任何接近的东西。
I have a table of games laid out in a grid and I want to drag any square to anther square, and invoke a function. The game squares must have an id corresponding to the game they represent (or contain a div with that ID).
I want to drag any table cell to any other table cell and invoke an ajax action with both id numbers, so I can swap the game bookings.
I don't know where to start and can't find anything close.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当执行投放时,您应该能够获得所需的一切。
如果您的基本设置是:
只需在放置事件中将单元格设置为可拖动和可放置:
You should be able to get everything you need when the drop is performed.
If your basic set up is:
Just set the cells as draggable AND droppable with this in your drop event: