1

我正在使用 jquery draggable 并且我正在处理停止事件。我需要知道被拖入的 LI 元素的 ID。我该怎么做?

4

2 回答 2

3

uiobject 具有.helper属性,表示被拖动的jQuery对象。id您可以通过这种方式从中检索元素:

stop: function(event, ui) { 
    alert( ui.helper[0].id );         // here it is
}

演示

于 2012-07-27T09:01:37.510 回答
2

target属性event应该是可拖动的:

stop: function(event, ui) { 
    console.log(event.target.id); // Assuming it has an ID
}

实例| 来源

于 2012-07-27T09:12:27.370 回答