JQuery UI Draggable - 更改已删除帮助元素的html

时间:2012-04-12 22:37:08

标签: jquery jquery-ui jquery-ui-draggable

我有一个问题,我需要在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 ?? --
        -- -------------------------------- --

    }
});

1 个答案:

答案 0 :(得分:0)

您无法为可拖动元素设置ondrop事件。你应该在可放置的一面做。

$("#drop").droppable({
    drop : function(event,ui) {
         //do what you want with ui.helper
    }
});