5
2

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.

ブラウザバック禁止

Posted at
  • ブラウザの戻るを禁止
$(function(){
    history.pushState(null, null, null);
    window.addEventListener('popstate', (e) => {
        history.pushState(null, null, null);
    });
});
  • chromeだと、ページを読み込んだ直後の状態ではブラウザバックでのpopstateイベントが発火しない模様。

    画面クリックなど、ユーザーが何かしらアクションをしたら動作する。
  • 「確認画面 → <登録処理> → 詳細画面」の後、戻られた場合はgetで必須パラメータチェックで対応とする。
5
2
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
5
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?