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.
Mobile Safari はtouchmoveイベントを登録しません! どちらも期待どおりに機能しますがtouchstart、発砲を拒否します。touchendtouchmove
touchmove
touchstart
touchend
$("#Element").on({ "touchmove" : function(e){ e.preventDefault(); console.log("touch move!"); } });
問題はCSSにありました。サイトのスクロールをよりスムーズにするために、次のように追加しました。
html, body { -webkit-overflow-scrolling: touch; }
それをコメントアウトしたら、touchmove正しく発砲しました。