$(".LWdrop").droppable({
accept: ".LW",
drop: function(event, ui){
ui.draggable.addClass("LWactive");
$(this).droppable('option', 'accept','');
$(this).css("background-color", "#444444");
},
out: function(event, ui){
$(this).droppable('option', 'accept', '.LW');
ui.draggable.removeClass("LWactive");
},
activate: function(event, ui){
$(this).css("background-color", "blue");
},
deactivate: function(event, ui){
$(this).css("background-color", "#444444");
}
});
请忽略激活/停用时丑陋的背景颜色变化,这仅用于测试。我遇到了“out”没有被触发的问题。这可能与可拖动对象设置为“恢复:无效”这一事实有关吗?即使删除它,我也无法从 out 事件中执行任何操作……甚至是一个简单的警报框。有小费吗?