我可以在jQuery中访问droppable元素的div id:
$(".all").droppable({
drop: function(event, ui) {
// Get the droppable div id here
}
});
答案 0 :(得分:2)
您可以使用this.id
,或者从ui.helper
$( ".all" ).droppable({
drop: function(event, ui) {
alert( ui.helper.id );
}
});
答案 1 :(得分:0)
drop
事件$(this)
内部表示可放置元素,ui.draggable
表示可拖动元素。你可以试试这个。
$(".all").droppable({
drop: function(event, ui) {
alert(this.id);
}
});