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.
このコードはすべてのスクロールを無効にします:
document.ontouchmove = function(event) { event.preventDefault(); }
しかし、垂直スクロールのみを無効にする方法は?
やってみました
yourdiv.onscroll = function(){ this.scrollTop = 0; this.scrollLeft = 0; }
もちろん、これでもスクロールバーが表示される場合があります。cssを使用するのが最適です。