How to disable scrolling temporarily?

前端 未结 30 2464
萌比男神i
萌比男神i 2020-11-21 05:16

I\'m using the scrollTo jQuery plugin and would like to know if it is somehow possible to temporarily disable scrolling on the window element through Javascript? The reason

30条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-11-21 05:35

    I found this answer on another site:

    Disable scroll:

    $( ".popup").live({
        popupbeforeposition: function(event, ui) {
        $("body").on("touchmove", false);
    }
    });
    

    After close popup release scroll:

    $( ".popup" ).live({
        popupafterclose: function(event, ui) {
        $("body").unbind("touchmove");
    }
    });
    

提交回复
热议问题