滚动穿透这事儿真的太折磨人了...今天调了半天才搞定,真是气死了
document.addEventListener('touchmove', function(e) {
if (e.target.closest('.modal')) {
e.preventDefault();
}
}, { passive: false });
登录/注册