简体   繁体   中英

in a jQuery sortable connected to a draggable list, how can I tell the particular list item that the draggable item was dropped onto?

Consider the following pair of lists:

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>

Here is a fiddle with that code.

The comment in the code outlines my question. To repeat, I'm wondering how I can programmatically determine the particular list item that the draggable element was dropped onto?

If you mean sortable's update then you can just do:

 $('#list1').sortable({
        revert: true,
        update: function(event, ui){
            ui.item.prev().css('color', 'green'); //get the prev element of item sorted just now, applies for the dropped as well
            ui.item.next().css('color', 'blue');//get the next element of item sorted just now, applies for the dropped as well
        }
    });

Something like this?

  $('#list1').sortable({
        revert: true,
        update: function(event, ui){
            $('.next, .prev').removeClass('next prev');

            var $prevElem = ui.item.prev(),
                $nextElem = ui.item.next();
            $prevElem.addClass('prev');
            $nextElem.addClass('next');
            console.log('Item sorted is before ' + $prevElem.text() + ' after ' + $nextElem.text());
        }
    });

Demo

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM