标签: jquery jquery-ui
我想在拖动处理程序中引用克隆元素。以下代码不起作用并引用主对象,而不是克隆的
$(elem).draggable({ helper: 'clone', drag: function () { console.log('$(this) refers to the original not the one that is cloned') } })
答案 0 :(得分:0)
使用ui.helper选择器。
$(ui.helper)