2012-06-22 49 views
0

我有一個使用JQUERY UI的小javascript。JQuery ui drop event?如何知道什麼被丟棄?

當我收到'drop'事件調用時,我想知道什麼是HTML元素被刪除。 有人可以告訴我如何解決這個問題。

我知道如何計算其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 "+"???"); 
     }); 
    }); 

回答

0

drop功能將是ui.draggable

+0

我看到了,但ui.draggable不是HTML元素。這是別的。 – Zo72

+0

你可以使用'''ui.draggable [0]''來獲取HTML元素。 –

+0

謝謝你的作品。非常感謝!你能否解釋一下它是如何工作的......或者它被記錄在案。 – Zo72