2014-05-19 86 views

回答

0

您應該能夠將查詢drop事件與可編輯的事件綁定在一起後創建。然後你的回調將被調用,當某些東西被放置在可編輯區域時。

$(function(){ 
    Aloha.bind('aloha-editable-created', function(event, editable){ 
     var the_obj = editable.obj; 
     $(editable.obj).bind('drop', function(event){ 
      alert('something dropped in my editable'); 
     }); 
    }); 
}) 

我希望它能幫助

+0

謝謝你,我會嘗試,讓你知道,如果這個工程。 – user3652625