Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
2 つのボックスがあり、どちらもドラッグ アンド ドロップ イベントに使用できます。ドロップ機能を実行する必要があるボックスを一度に 1 つだけ強調表示する必要があります
でドラッグ イベントが発生したことを検出しますdocument。お気に入り:
document
$(document).on("dragstart", ..);
次に、強調表示するボックスにクラスを追加します。
$("#drop_box").addClass("highlight");
次に、もう一度クラスを削除することを忘れないでください"dragend"
"dragend"