我已经尝试了一切,包括:
(() => {
const prevent = e => e.preventDefault();
document.body.addEventListener('touchstart', prevent, { passive: false });
document.body.addEventListener('touchmove', prevent, { passive: false });
})()
overscroll-behavior: contain;
touch-action: none;
似乎没有任何工作。这是一个已知的问题?