サイトアイコン 上尾市のWEBプログラマーによるブログ

【JavaScript】ブラウザバック(戻るボタン)を無効化する方法

JavaScript

概要

JavaScriptのHistory APIでブラウザの戻るボタンを無効化することができる。

サンプル

window.history.pushState(null, null, null);
window.addEventListener("popstate", function() {
  window.history.pushState(null, null, null);
  return;
});

処理内容の説明

モバイルバージョンを終了