jquery拖放刷新div内容

发布于 2024-10-10 01:01:19 字数 229 浏览 5 评论 0原文

我正在使用 jquery UI 拖放。当可拖动的 div 元素被删除时,可以刷新 div 内容吗?

请参阅 jsFddle 中的示例代码。例如,我希望购物div内容在掉落时能够自动刷新(内容可以由PHP编写)。我应该怎么办?

提前致谢!

I'm using jquery UI drag-and-drop. It is possible to refresh the div contents when a draggable div element been dropped?

Please see my example code in the jsFddle . For example, I want the shopping div content could refresh automatically(the content could written by PHP) when dropped. What should I do?

Thanks in advance!

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

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

发布评论

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

评论(2

清醇 2024-10-17 01:01:19

可排序有一些您可以使用的事件。

我已经更新了 演示 以显示使用可排序 update 事件触发可用于更新购物车 portlet 的函数。我的演示只是用当前时间更改 div 内的文本,但是您需要进行 ajax 调用来获取新内容或类似内容。

The sortable has a few events that you can use.

I have updated the demo to show using the sortable update event to trigger a function which can be used to update the shopping cart portlet. My demo just changes the text inside the div with the current time however you would need to make an ajax call to get the new content or similar.

我一向站在原地 2024-10-17 01:01:19

Sortable 确实有一个停止事件...

            $( "#sortable" ).sortable({
        stop: function(event, ui) {
                //Do what you want to here after the element has been dropped.
            }
    });

这是您正在寻找的吗?

Sortable does have a stop event...

            $( "#sortable" ).sortable({
        stop: function(event, ui) {
                //Do what you want to here after the element has been dropped.
            }
    });

Is this what you were looking for?

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