2

这与其说是一个问题,不如说是一个问题的解决方案。

很难找到解决方案,直到我偶然发现了由 halodom 添加的答案(如何暂时禁用滚动?),它响应了一个稍微不同的问题。

我想明确记录问题的答案。其他解决方案是最受欢迎的,并将增加对话。

哈洛多姆的解决方案是:

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

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

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

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

我使用了 hallodom 的解决方案,只需将它们附加到单击 DOM 中的对象时调用的函数:

    $('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');
    }
4

1 回答 1

1

试试这个代码:

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);
    }
})
于 2013-07-21T07:22:26.290 回答