我有一个问题,我需要在drop上更改可拖动辅助元素的html,如下所示?有什么建议吗?
<ul id="submenu">
<li><div class="thumb"></div></li>
<li><div class="thumb"></div></li>
</ul>
<ul id="sortable">
<li></li>
</ul>
--------------
--------------
// #### DRAGGABLE ####
$(".thumb").draggable({
helper: "clone",
appendTo: 'body',
connectToSortable: "ul#sortable",
revert: "invalid",
stop: function(event,ui) {
-- -------------------------------- --
-- Change html of ui.helper here ?? --
-- -------------------------------- --
}
});
答案 0 :(得分:0)
您无法为可拖动元素设置ondrop事件。你应该在可放置的一面做。
$("#drop").droppable({
drop : function(event,ui) {
//do what you want with ui.helper
}
});