2014-02-15 51 views
0

我想在拖動處理函數中引用克隆的元素。以下代碼不起作用並且指向主對象,而不是被克隆的對象'this'表示克隆時的拖動元素

$(elem).draggable({ 
    helper: 'clone', 
    drag: function() { 
     console.log('$(this) refers to the original not the one that is cloned') 
    } 
}) 
+0

[查看此問題](http://stackoverflow.com/questions/6489794/how-can-i-style-jquery-draggable-clone),可能有幫助 –

回答

0

使用ui.helper選擇器。

$(ui.helper)