JQuery ui drop事件?怎么知道掉了什么?

时间:2012-06-22 16:20:05

标签: jquery-ui

我有一个使用JQUERY UI的小javascript。

当我收到'drop'事件调用时,我想知道HTML Element被删除了什么。 有人可以告诉我如何解决这个问题。

我知道如何确定哪个HTML元素收到了该事件,但我不知道如何确定哪个HTML元素被删除

$(function() {
        $( "#draggable,#draggable2,#draggable3" ).draggable({ revert: "invalid" });
        $( "#draggable,#draggable2,#draggable3" ).droppable({
            accept: "#draggable,#draggable2,#draggable3",
            activeClass: "ui-state-hover",
            hoverClass: "ui-state-active",
            drop: function( event, ui ) {


                alert("destination:"+ this.id+" source:"+event.target.id);
                            alert("source is "+"???");
        });
    });

1 个答案:

答案 0 :(得分:0)

drop函数中,它将是ui.draggable