我需要在开始拖动时修改元素。 'start'回调有两个参数,只有第一个参数似乎对我有用。这笔交易是我使用helper: 'clone'
使event.originalTarget
只指向“原始”元素,而不是新元素(实际上是被拖动的元素)。
有解决方案吗
谢谢,
米。
答案 0 :(得分:2)
ui.helper
你不需要什么?来自文档:
ui.helper - 表示被拖动的帮助程序的jQuery对象
所以你会有像
这样的东西$( ".selector" ).draggable({
start: function(event, ui) {
ui.helper.modify(the_way_I_want_to_modify_it);
}
});