回答編集履歴
1
tdの閉じタグを消し忘れ…
answer
CHANGED
@@ -3,10 +3,10 @@
|
|
3
3
|
修正①
|
4
4
|
```javascript
|
5
5
|
// input用 タグ(tdは不要)
|
6
|
-
var tag1 = '<input type="text" value="" />
|
6
|
+
var tag1 = '<input type="text" value="" />',
|
7
|
-
tag2 = '<input type="text" value="" />
|
7
|
+
tag2 = '<input type="text" value="" />',
|
8
|
-
tag3 = '<input type="text" value="" />
|
8
|
+
tag3 = '<input type="text" value="" />',
|
9
|
-
tag4 = '<input type="text" value="" />
|
9
|
+
tag4 = '<input type="text" value="" />';
|
10
10
|
```
|
11
11
|
|
12
12
|
修正②(ClassNameを追加)
|