質問編集履歴
2
ソースをテキストでつけた
test
CHANGED
File without changes
|
test
CHANGED
@@ -4,4 +4,28 @@
|
|
4
4
|
|
5
5
|
今回のjsファイルの記述です↓
|
6
6
|
|
7
|
+
```ここに言語を入力
|
8
|
+
|
9
|
+
window.onpageshow = function() {
|
10
|
+
|
11
|
+
var path = location.href;
|
12
|
+
|
13
|
+
|
14
|
+
|
7
|
-
|
15
|
+
if(path.indexOf("confirm") >= 0){
|
16
|
+
|
17
|
+
history.pushState(null, null, null);
|
18
|
+
|
19
|
+
window.addEventListener('popstate', function(event) {
|
20
|
+
|
21
|
+
history.pushState(null, null, null);
|
22
|
+
|
23
|
+
location.reload();
|
24
|
+
|
25
|
+
});
|
26
|
+
|
27
|
+
}
|
28
|
+
|
29
|
+
}
|
30
|
+
|
31
|
+
```
|
1
タイトル編集
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
ブラウザバックがGoogle chromeで効かない
|
1
|
+
ブラウザバック禁止がGoogle chromeで効かない
|
test
CHANGED
File without changes
|