我正在使用一個可排序的圖像div,但是我無法刪除該項目被拖出div的項目。JQuery UI 1.10.3排序不會刪除項目
var sortableIn = false;
$("#divId").sortable({
over: function() {
sortableIn = false;
},
out: function() {
sortableIn = true;
},
beforeStop: function() {
if (sortableIn == true) {
ui.item.remove();
}
},
}).disableSelection();
我也跟在beforeStop功能remove方法嘗試$(div.img)我知道$(div.img)是不正確的,但它確實刪除被彈出煩人的佔位符。 var newItem = ui.item;也沒有做到這一點。
這裏是煩人PLACEHOLD 呃
可能的錯誤使用jQuery UI 1.10.3? –