LoginSignup
70
73

More than 5 years have passed since last update.

iOS ブラウザバック時にリロードさせる (javascript)

Last updated at Posted at 2015-07-17

iPhoneだとブラウザバックしても状態が保持されてしまうので、バックされた場合はリロードする下記コードを入れとくといい

window.onpageshow = function(evt) {
    if (evt.persisted) {
      location.reload();
    }
};
70
73
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
70
73