禁止(启用)页面滚动
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);