$(".drop").sortable({
connectWith: 'ul',
cancel: ".ui-state-highlight"
});
$(".draggable").draggable({
connectToSortable: '.drop',
helper: 'clone',
revert: 'invalid',
editable: true
});
$("#test").disableSelection();
我通过拖动创建(克隆)元素然后到列表,所以我想创建一个div“REMOVE HERE”所以当用户拖动其中一个克隆元素时,它将被删除
怎么做?