##前提・実現したいこと
現在、ブラウザバックの無効化機能を実装しているのですが、safariは無効化できるのにGoogle chromeではできないという現象に陥ってしまいました。どのような記述をすればGoogle chromeでも効くようになるのかご指導いただきたいです。よろしくお願いいたします。
今回のjsファイルの記述です↓
window.onpageshow = function() { var path = location.href; if(path.indexOf("confirm") >= 0){ history.pushState(null, null, null); window.addEventListener('popstate', function(event) { history.pushState(null, null, null); location.reload(); }); } }
回答1件
あなたの回答
tips
プレビュー