質問編集履歴
1
ソースコードをスクリプト部分だけではなく、全体を載せるよう変更
test
CHANGED
File without changes
|
test
CHANGED
@@ -52,7 +52,23 @@
|
|
52
52
|
|
53
53
|
### ソースコード
|
54
54
|
|
55
|
+
```html
|
56
|
+
|
57
|
+
<!DOCTYPE HTML>
|
58
|
+
|
59
|
+
<html>
|
60
|
+
|
55
|
-
|
61
|
+
<head>
|
62
|
+
|
63
|
+
<meta charset="utf-8">
|
64
|
+
|
65
|
+
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, maximum-scale=1, user-scalable=no">
|
66
|
+
|
67
|
+
<script src="components/loader.js"></script>
|
68
|
+
|
69
|
+
<link rel="stylesheet" href="components/loader.css">
|
70
|
+
|
71
|
+
<link rel="stylesheet" href="css/style.css">
|
56
72
|
|
57
73
|
<script>
|
58
74
|
|
@@ -132,6 +148,24 @@
|
|
132
148
|
|
133
149
|
</script>
|
134
150
|
|
151
|
+
</head>
|
152
|
+
|
153
|
+
<body>
|
154
|
+
|
155
|
+
<h1>ここはh1です。</h1>
|
156
|
+
|
157
|
+
<input type="text" name="col1" id="col1">
|
158
|
+
|
159
|
+
<input type="text" name="col2" id="col2">
|
160
|
+
|
161
|
+
<button onClick="addData();">追加</button>
|
162
|
+
|
163
|
+
<div>ここはdivです。</div>
|
164
|
+
|
165
|
+
</body>
|
166
|
+
|
167
|
+
</html>
|
168
|
+
|
135
169
|
|
136
170
|
|
137
171
|
```
|