1
0

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.

【JavaScript】ブラウザバックでonloadイベントが呼ばれないようにしたい

Posted at

##起こったこと
onloadイベントでメッセージ通知を行っていたが、ブラウザバックでもメッセージが表示されてしまった。

ブラウザのバージョン
Microsoft Edge バージョン 88.0.705.62 (公式ビルド) (64 ビット)

##対処

JS
window.onload = function onloadEvent() {

    // ブラウザバックで戻ったときにメッセージ表示しないように
    window.addEventListener('pageshow', () => {
        // 0: 初めて開いたとき
        // 1: リロードしたとき
        // 2: ブラウザバック
        var type = window.performance.navigation.type;

        if (type != 2) {
            alert('メッセージ表示');
        }
    });
};
1
0
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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?