回答編集履歴
3
追記
test
CHANGED
@@ -1,15 +1,51 @@
|
|
1
|
-
|
1
|
+
aタグのhref属性を削除してください。
|
2
2
|
|
3
|
+
```HTML
|
4
|
+
|
5
|
+
|
6
|
+
|
7
|
+
<div align="center">
|
8
|
+
|
9
|
+
<a style="text-decoration:none;" onClick="checkkuhaku()">
|
10
|
+
|
3
|
-
|
11
|
+
<button class="button">登録</button>
|
12
|
+
|
13
|
+
</a>
|
14
|
+
|
15
|
+
</br>
|
16
|
+
|
17
|
+
</div>
|
18
|
+
|
19
|
+
|
4
20
|
|
5
21
|
```
|
6
22
|
|
7
|
-
|
23
|
+
```JavaScript
|
8
24
|
|
9
25
|
|
10
26
|
|
11
|
-
|
27
|
+
function checkkuhaku(){
|
28
|
+
|
29
|
+
page_jump();
|
30
|
+
|
31
|
+
return false;
|
32
|
+
|
33
|
+
}
|
12
34
|
|
13
35
|
|
14
36
|
|
37
|
+
function page_jump(){
|
38
|
+
|
15
|
-
|
39
|
+
window.location.href='https://google.co.jp';
|
40
|
+
|
41
|
+
return false;
|
42
|
+
|
43
|
+
}
|
44
|
+
|
45
|
+
|
46
|
+
|
47
|
+
```
|
48
|
+
|
49
|
+
|
50
|
+
|
51
|
+
[サンプル](https://cdpn.io/asuchi0819/debug/jOOddWL/VJrxxOOLGdmr)
|
2
追記
test
CHANGED
@@ -4,16 +4,12 @@
|
|
4
4
|
|
5
5
|
```
|
6
6
|
|
7
|
-
ではなく
|
8
|
-
|
9
|
-
```Js
|
10
|
-
|
11
|
-
location.href='customer_information.php';
|
12
|
-
|
13
|
-
```
|
14
|
-
|
15
|
-
です。
|
7
|
+
でも良いそうです。
|
16
8
|
|
17
9
|
|
18
10
|
|
19
|
-
|
11
|
+
現状はmiyabi_takatsukさんがおっしゃっているように誤字やファイルの有無等をご確認ください。
|
12
|
+
|
13
|
+
|
14
|
+
|
15
|
+
解決されない場合はコード全文を記載していただくと解決のお手伝いすることができます。
|
1
追記
test
CHANGED
@@ -1,14 +1,8 @@
|
|
1
1
|
```JS
|
2
|
-
|
3
|
-
|
4
2
|
|
5
3
|
window.location.href='customer_information.php';
|
6
4
|
|
7
|
-
|
8
|
-
|
9
5
|
```
|
10
|
-
|
11
|
-
|
12
6
|
|
13
7
|
ではなく
|
14
8
|
|
@@ -16,8 +10,10 @@
|
|
16
10
|
|
17
11
|
location.href='customer_information.php';
|
18
12
|
|
19
|
-
|
20
|
-
|
21
13
|
```
|
22
14
|
|
23
15
|
です。
|
16
|
+
|
17
|
+
|
18
|
+
|
19
|
+
[参考](https://qiita.com/y-temp4/items/94727de9f2029a357e09)
|