禁止(启用)页面滚动

2020-12-24  本文已影响0人  HS_d119
 stop = e => {
    e.preventDefault();
    e.stopPropagation();
  };

禁用

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

启动

document.body.removeEventListener('touchmove', this.stop);
上一篇 下一篇

猜你喜欢

热点阅读