Cancel dragging of a sortable item

后端 未结 4 473
被撕碎了的回忆
被撕碎了的回忆 2021-02-04 00:16

An absolutely common sortable case:



  • Item
4条回答
  •  无人及你
    2021-02-04 01:09

    Try this example

    $('#list1').sortable({
        connectWith: 'ul'
    });    
    
    $('#list2').sortable({
        connectWith: 'ul',
        receive: function(ev, ui) {
           if(ui.item.hasClass("number"))
              ui.sender.sortable("cancel");
        }
    });  
    

提交回复
热议问题