如何使用overflow:auto将我的项目拖出#draggable div?示例如下。
答案 0 :(得分:3)
使用选项:
'helper':'clone'
似乎让用户将项目拖出
修改,
如果需要删除拖动的项目,请在droppable方法的drop事件中执行此操作。我应用了索引ID来标识项目,但这可以采用不同的方式
$('#target').droppable({
drop: function(event,ui){
// Append the item in the droppable div
$(this).append($(ui.draggable));
// Remove the item from the draggable list
$('#draggable li#'+$(ui.draggable).attr('id')).remove();
}
});