回答編集履歴

1

修正

2023/03/31 04:19

投稿

NKTIDKSG
NKTIDKSG

スコア679

test CHANGED
@@ -5,21 +5,17 @@
5
5
  ```js
6
6
  <!DOCTYPE html>
7
7
  <html lang="ja">
8
-
9
8
  <head>
10
9
  <meta charset="utf-8">
11
10
  <title>DEMO</title>
12
11
  <script src="./static/js/jquery-3.6.3.min.js"></script>
13
12
  </head>
14
-
15
13
  <body>
16
-
17
14
 
18
15
  <label for="aaa">label for aaa</label>
19
16
  <input type="text" id="aaa">
20
17
  <input type="text" id="ccc">
21
- <button type="submit" id="bbb">SUBMIT</button>
18
+ <button id="bbb">SUBMIT</button>
22
-
23
19
 
24
20
  <p id="ddd"></p>
25
21
 
@@ -32,8 +28,6 @@
32
28
  });
33
29
  });
34
30
  </script>
35
-
36
31
  </body>
37
-
38
32
  </html>
39
33
  ```