删除项目后,我试图在 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();
}
});
提前感谢您的帮助!