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 }
実例| ソース