美文网首页
手机屏蔽默认滚动条滚动

手机屏蔽默认滚动条滚动

作者: marker唉 | 来源:发表于2015-12-22 11:02 被阅读0次
    function bodyScroll(){    
        event.preventDefault();//阻止默认事件
    }
    
    //绑定touchmove事件
    document.addEventListener('touchmove', bodyScroll, false);
    
    //解除绑定touchmove事件
    document.removeEventListener('touchmove', bodyScroll, false);
    

    相关文章

      网友评论

          本文标题:手机屏蔽默认滚动条滚动

          本文链接:https://www.haomeiwen.com/subject/iuomhttx.html