1
1

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 3 years have passed since last update.

ブラウザバックした際に、画面をリロードでうまくいかないとき。

Last updated at Posted at 2020-02-28

備忘録的に残します。

ブラウザバックの際に、画面をリロードしたいって時がありまして。

window.onpageshow = function(event) {
	if (event.persisted) {
		 window.location.reload();
	}
};

これでは、firefoxはできたけど、chromeとEdgeでは効かないって話でした。

なので、

window.onpageshow = function(event) {
	if (event.persisted || window.performance && 
            window.performance.navigation.type == 2) {
		 window.location.reload();
	}
};

これで、できました。
めでたし、めでたし。

※ただし、ブラウザバックだけでなく、フォワードした際にも入る可能性がある(未検証)ので、他の制御はいるかも。

参考:元ネタはここです。

1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?