質問編集履歴

1

HTML jQuery 一つのファイルにまとめました。

2020/09/28 09:01

投稿

fuyukixxx
fuyukixxx

スコア26

test CHANGED
File without changes
test CHANGED
@@ -56,9 +56,9 @@
56
56
 
57
57
  ```
58
58
 
59
- ```HTML
59
+ ```HTMLjQuery
60
60
 
61
- <form id="form" action="" method="POST">
61
+ <form id="form" action="" method="POST">
62
62
 
63
63
  <div class="form-content mt-5">
64
64
 
@@ -100,7 +100,7 @@
100
100
 
101
101
  <textarea class="form-control" name="message" placeholder="お問い合わせ"
102
102
 
103
- value="<?php echo htmlspecialchars($_POST['message'], ENT_QUOTES)?>" rows="10"></textarea>
103
+ rows="10"><?php echo htmlspecialchars($_POST['message'], ENT_QUOTES)?></textarea>
104
104
 
105
105
  <?php if ($error['message'] === 'blank') :?>
106
106
 
@@ -116,13 +116,19 @@
116
116
 
117
117
  <input name="position" type="hidden" value="0">
118
118
 
119
- <input type="button" name="submit" value="上記の内容で送信する" class="text-center " id="button">
119
+ <input type="submit" name="submit" value="上記の内容で送信する" class="text-center " id="button">
120
120
 
121
121
  </form>
122
122
 
123
- ```
123
+ </div>
124
124
 
125
+ </div>
126
+
127
+ </div>
128
+
129
+
130
+
125
- ```jquery
131
+ <script>
126
132
 
127
133
  $(document).ready(function() {
128
134
 
@@ -146,6 +152,8 @@
146
152
 
147
153
  });
148
154
 
149
- });
155
+ });
156
+
157
+ </script>
150
158
 
151
159
  ```