質問編集履歴
1
やりたい事の説明補助として、tableタグで表を追加
title
CHANGED
File without changes
|
body
CHANGED
@@ -67,6 +67,28 @@
|
|
67
67
|
<div id="doneMind" class="btn">【arrayMindの配列出力ボタン】</div>
|
68
68
|
|
69
69
|
</section>
|
70
|
+
|
71
|
+
|
72
|
+
<div class="container">
|
73
|
+
<table>
|
74
|
+
<thead>
|
75
|
+
<tr>
|
76
|
+
<th>Q1-Q3のvalue合計</th>
|
77
|
+
<th>Q4-Q6のvalue合計</th>
|
78
|
+
<th>総合計</th>
|
79
|
+
</tr>
|
80
|
+
</thead>
|
81
|
+
<tbody>
|
82
|
+
<tr>
|
83
|
+
<td id="abilityTotal">00点</td>
|
84
|
+
<td id="mindTotal">00点</td>
|
85
|
+
<td id="groundTotal">00点</td>
|
86
|
+
</tr>
|
87
|
+
</tbody>
|
88
|
+
</table>
|
89
|
+
</div>
|
90
|
+
|
91
|
+
|
70
92
|
```
|
71
93
|
|
72
94
|
```JavaScript
|