2011-06-19 82 views

回答

2

使用jQuery可拖動的helper選項helper: 'clone'和處理drop事件,像這樣:

$("#droppable").droppable({ 
    drop: function(event, ui) { 
     $(this).append($(ui.draggable).clone()); 
    } 
}); 
+0

看起來工作得很好!順便說一下,當你放棄一個新的移動點時,你如何移除當前的div? (目前,他們堆在另一個頂部) –

+1

@adam:把它扔在[小提琴](http://jsfiddle.net),我很樂意看一看。不確定你的意思。 –

+0

@David Wick這裏是[鏈接](http://jsfiddle.net/hfWz7/) –