我正在使用 jquery 来实现拖放操作。我有两个容器,它们使用类 ui-widget-content。
我已启用绑定使用
// let the todo be droppable as well, accepting items from the done
$newtask.droppable({
accept: "#inprogress li, #done li",
activeClass: "custom-state-active",
drop: function( event, ui ) {
recycleImage( ui.draggable );
}
});
虽然我的容器将接受传入的 LI,但它不会突出显示