jQuery内のドロップ可能な要素のdivIDにアクセスできますか?
$(".all").droppable({
drop: function(event, ui) {
// Get the droppable div id here
}
});
jQuery内のドロップ可能な要素のdivIDにアクセスできますか?
$(".all").droppable({
drop: function(event, ui) {
// Get the droppable div id here
}
});
を使用するthis.id
か、ui.helper
:から取得できます。
$( ".all" ).droppable({
drop: function(event, ui) {
alert( ui.helper.id );
}
});
drop
イベント内は$(this)
、ドロップ可能な要素をui.draggable
表し、ドラッグ可能な要素を表します。あなたはこれを試すことができます。
$(".all").droppable({
drop: function(event, ui) {
alert(this.id);
}
});