我正在开发一个拖放应用程序.我有一个DIV可以沿着文档拖动,文档中还有一些div,我可以拖动一个div到其他div,但是如何找到我拖放DIV的div的id,
我只想在放置另一个DIV之后,知道目标DIV的id.
谢谢
解决方法
您应该可以从event.id内获取目标的ID(
demo)
$(".droppable").droppable({ drop: function(event,ui) { $(this).addClass("ui-state-highlight").find("p").html("Dropped in " + this.id); },over: function(event,ui) { $('.display').html( this.id ); } });
Updated demo说明this.id可以在任何事件中起作用.