14
12

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

[Intervention]Ignored attempt to cancel a touchend event with cancelable=false, for example because scrolling is in progress and cannot be interrupted.

Posted at

[Intervention]Ignored attempt to cancel a touchend event with cancelable=false, for example because scrolling is in progress and cannot be interrupted.

こんなエラーがでてきたので対処法を。
エラー文読めばわかるけど・・・。

ブラウザのスクロールや再読込(下にスワイプして離す)などの実行中ではtouchendイベントのキャンセルは無視されますよ、ということらしい。

具体的にはpreventDefault()などの実行をしているとこのエラーがでる模様。
なのでイベント発生時に実行している関数内で下記のように条件分岐させることでエラーが回避できる。

$(el).on('touchmove',ontouchmove);

function ontouchmove(e){
  if(e.cancelable){
    e.preventDefault();
  }
}
14
12
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
14
12

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?