美文网首页
禁止(启用)页面滚动

禁止(启用)页面滚动

作者: HS_d119 | 来源:发表于2020-12-24 11:31 被阅读0次
     stop = e => {
        e.preventDefault();
        e.stopPropagation();
      };
    

    禁用

    document.body.addEventListener('touchmove', this.stop, { passive: false });
    

    启动

    document.body.removeEventListener('touchmove', this.stop);
    

    相关文章

      网友评论

          本文标题:禁止(启用)页面滚动

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