質問編集履歴
1
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -21,6 +21,8 @@
|
|
21
21
|
```js
|
22
22
|
|
23
23
|
function checkForm(){
|
24
|
+
|
25
|
+
|
24
26
|
|
25
27
|
|
26
28
|
|
@@ -56,7 +58,7 @@
|
|
56
58
|
|
57
59
|
|
58
60
|
|
59
|
-
|
61
|
+
<form action="contact.php" method="post" enctype="multipart/form-data" name="checkcheck">
|
60
62
|
|
61
63
|
<dt><p class="name">氏名<a>*</a></p></dt>
|
62
64
|
|
@@ -68,6 +70,24 @@
|
|
68
70
|
|
69
71
|
<dd><input type="text" placeholder="山田太郎" name="name" class="name_a"></dd>
|
70
72
|
|
73
|
+
|
74
|
+
|
75
|
+
|
76
|
+
|
77
|
+
<div class="send">
|
78
|
+
|
79
|
+
<input type="submit" value="送 信" class="send_button" onclick="return checkForm()">
|
80
|
+
|
81
|
+
</div>
|
82
|
+
|
83
|
+
|
84
|
+
|
85
|
+
|
86
|
+
|
87
|
+
</form>
|
88
|
+
|
89
|
+
|
90
|
+
|
71
91
|
```
|
72
92
|
|
73
93
|
|