jquery拖放刷新div内容
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
可排序有一些您可以使用的事件。
我已经更新了 演示 以显示使用可排序 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.
Sortable 确实有一个停止事件...
这是您正在寻找的吗?
Sortable does have a stop event...
Is this what you were looking for?