Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 jquery draggable 并且我正在处理停止事件。我需要知道被拖入的 LI 元素的 ID。我该怎么做?
uiobject 具有.helper属性,表示被拖动的jQuery对象。id您可以通过这种方式从中检索元素:
ui
.helper
jQuery
id
stop: function(event, ui) { alert( ui.helper[0].id ); // here it is }
演示
的target属性event应该是可拖动的:
target
event
stop: function(event, ui) { console.log(event.target.id); // Assuming it has an ID }
实例| 来源