jQuery 可拖动和调用函数

发布于 2024-12-08 12:51:05 字数 183 浏览 0 评论 0原文

我在网格中放置了一张游戏桌,我想将任何方块拖动到另一个方块,并调用一个函数。游戏方块必须有一个与其代表的游戏相对应的 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 技术交流群。

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

发布评论

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

评论(1

千秋岁 2024-12-15 12:51:05

<块引用>

是的,我知道如何操作,但这并没有告诉我如何从每个元素中提取 id 号。

当执行投放时,您应该能够获得所需的一切。
如果您的基本设置是:

    <table><tr><td id="cell_1"></td><td id="cell_2"></td></tr></table>

只需在放置事件中将单元格设置为可拖动和可放置:

    $('td').draggable().droppable({
            drop: function(event, ui) {
                    var dragged_id = ui.draggable.attr('id'); // cell that was dragged
                    var dropped_id = $(this).attr('id'); // cell dropped into
                    $.ajax(...);
            }
    });

Yes, I have the how to, but that doesn't show me how to extract the id number from each element.

You should be able to get everything you need when the drop is performed.
If your basic set up is:

    <table><tr><td id="cell_1"></td><td id="cell_2"></td></tr></table>

Just set the cells as draggable AND droppable with this in your drop event:

    $('td').draggable().droppable({
            drop: function(event, ui) {
                    var dragged_id = ui.draggable.attr('id'); // cell that was dragged
                    var dropped_id = $(this).attr('id'); // cell dropped into
                    $.ajax(...);
            }
    });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文