'this'指的是克隆时的drag元素

时间:2014-02-15 04:45:34

标签: jquery jquery-ui

我想在拖动处理程序中引用克隆元素。以下代码不起作用并引用主对象,而不是克隆的

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

1 个答案:

答案 0 :(得分:0)

使用ui.helper选择器。

 $(ui.helper)