考虑以下一对列表:
user's queue
<ul id='list1'>
<li>Some</li>
<li>Thing</li>
</ul>eligible items
<ul id='list2'>
<li>Red</li>
<li>Green</li>
<li>Blue</li>
<li>Electric Banana</li>
<li>Flamingo Pink</li>
</ul>
<script>
jQuery(function($) {
$('#list2 li').draggable({
cursor: 'move',
helper: 'clone',
connectToSortable: "#list1",
update: function(event, ui){
// In here, I can get the item being dragged by inspecting
// event.toElement (and probably other ways as well), and
// I can find the list I am dropping onto by inspecting
// event.target.
// But, how do I tell what particular list item in the "user's
// queue" (#list1) list that the item is being dropped onto?
// E.g., if I drop "Green" onto "Thing", so it displaces "Thing",
// and the list now contains "Some, Green, Thing", how can I tell
// here in code that "Green" was dropped onto "Thing"?
}
});
$('#list1').sortable({
revert: true,
});
});
</script>
代码中的注释概述了我的问题。再说一遍,我想知道如何以编程方式确定可拖动元素被拖放到的特定列表项?