jquery を使用してドラッグ アンド ドロップ操作を実装しています。クラス ui-widget-content を使用する 2 つのコンテナーがあります。
を使用してバインディングを有効にしました
// 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を受け入れますが、強調表示されません