拖放后显示消息(不弹出消息,只是html)

时间:2012-12-16 18:26:15

标签: jquery drag-and-drop

我试图在删除项目后在html中显示,但不是在弹出消息中。我已经尝试过.confirm和.alert,但它们会弹出消息。我也找到了.html方法,但我的项目最终丢失了,他们的文本更改为输出消息。 我知道我需要在droppable项目中添加一个函数(其中的东西将被删除),但不确定什么会起作用。

我在线发现这些代码是因为我将它用作界面功能,但我正在尝试修改它以供我使用。

$('.listdragable').droppable({
    tolerance: 'pointer',
    drop: function(event, ui) {
        // get target list name
        var newList = $(this).parent().attr("id");  
        $(this).append($(ui.helper.children()).clone().draggable({
            //make dropped items in new list draggable
            helper: function() {
                var selected = $('#' + newList + ' input:checked').parents('li');
                if (selected.length === 0) {
                    selected = $(this);
                }   
                var container = $('<div/>').attr('id', 'draggingContainer');
                container.append(selected.clone());
                oldselected = selected;
                return container;
        }               
        }));        
        //remove dropped items from old list
        oldselected.remove();       
    } 
});

提前感谢您的帮助!

0 个答案:

没有答案