这不是一个问题,而是解决问题的方法。

直到我偶然发现了对一个稍有不同的问题做出反应的幻觉(How to disable scrolling temporarily?)添加的答案之前,很难找到解决方案。

我想明确记录该问题的答案。其他解决方案非常受欢迎,并且会增加对话的余地。

异教徒的解决方案是:

对于移动设备,您需要处理touchmove事件:

$('body').bind('touchmove', function(e){e.preventDefault()})


并取消绑定以重新启用滚动。在iOS6和Android 2.3.3中测试

$('body').unbind('touchmove')


我通过简单地将它们附加到单击DOM中的对象时调用的函数来使用hallodom的解决方案:

    $('body').on('click', 'button', function(e){
        if($(this).prop('checked')){
             disable_scroll();
        }else{
             enable_scroll();
        }
    });

    function disable_scroll() {
         $('body').bind('touchmove', function(e){e.preventDefault()});
    }

    function enable_scroll() {
        $('body').unbind('touchmove');
    }

最佳答案

试试这个代码:

var scroll = true

$(document).bind('touchmove', function(){
    scroll = false
}).unbind('touchmove', function(){
    scroll = true
})

$(window).scroll(function() {
    if ($('button').is(':checked') && scroll == false) {
        $(document).scrollTop(0);
    }
})

10-08 04:45