我有一个问题,我需要在放置时更改可拖动辅助元素的 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 ?? --
-- -------------------------------- --
}
});