2011-03-23 93 views
0

基於關閉的this Drag/Drop example使用Ajax和拖/放jQuery插件

如果我要遞增值(表決)在可拖動後,我的數據庫表中的一個被丟棄到它的容器,我只想用$ .ajax()在這個塊下面?

drop: function(event, ui) { 
     $(this) 
      .addClass("ui-state-highlight") 
      .find("p") 
       .html("Dropped!"); 
    } 

或將這種方法與這個特別的插件工作?

回答

1

是的,這將工作。

drop: function(event, ui) { 
    $(this) 
     .addClass("ui-state-highlight") 
     .find("p") 
     .html("Dropped!"); 
    $.ajax(/*** your code ***/); 
} 
+0

像老闆!有用。謝謝。我愛你。 – 2011-03-23 01:12:36