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 の HTML ページでスクロールを無効にしたいのですが、ホーム画面からページを起動すると機能しません。
正常に動作しているSafariでスクロールを無効にしました。ただし、ホーム画面からページを実行すると、バウンス効果で垂直にスクロールします。私は現在使用しています:
$(document).bind('touchmove', function(e) { e.preventDefault(); });
touchmove の代わりに touchstart を使用する必要があります。これで問題は解決するはずです。これは、パン中にイベントが発生しないため、touchmove イベントの発生が遅すぎるためです。