Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我对在 iPad 上禁用滚动的 CSS 方法感兴趣。我正在使用范围的输入类型来创建滑块,但想防止在 iPad 的其余部分上滚动以保持身体的固定位置。
有人有万无一失的方法吗?
我是个白痴……但也没有其他人回答这个问题。这是答案:
在页面中添加以下代码:
document.addEventListener('touchmove', function (e) {if(e.target.id != 'slider_id'){e.preventDefault(); }}, false);