Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 jquery UI 拖放。拖放可拖动的 div 元素时是否可以刷新 div 内容?
请在jsFddle中查看我的示例代码。例如,我希望购物 div 内容在删除时可以自动刷新(内容可以由 PHP 编写)。我应该怎么办?
提前致谢!
sortable 有一些您可以使用的事件。
我更新了演示以显示使用可排序更新事件来触发可用于更新购物车 portlet 的功能。我的演示只是用当前时间更改了 div 内的文本,但是您需要进行 ajax 调用以获取新内容或类似内容。
Sortable 确实有一个停止事件...
$( "#sortable" ).sortable({ stop: function(event, ui) { //Do what you want to here after the element has been dropped. } });
这是你要找的吗?