jQuery Sortable List - scroll bar jumps up when sorting

后端 未结 13 1131
慢半拍i
慢半拍i 2020-12-24 12:28

I created a demo: http://pastebin.me/584b9a86d715c9ba85b7bebf0375e237

When the scroll bar is at the bottom and you drag items to sort them, it causes the scroll bar

13条回答
  •  春和景丽
    2020-12-24 13:25

    Here is another easy option to solve this problem.

    1. when mouseenter your sorting Icon,

      $("body").css("overflow-y","hidden");
      
    2. when mouseleave your sorting Icon

      $("body").css("overflow-y","scroll");
      

提交回复
热议问题