Hallo Forum,
ich habe eine tabellarische Aufstellung und möchte beim "Checken" einer Checkbox die KB-Werte derselben Zeile addieren. Diese habe ich in ein span-Element derselben Zeile mit der ID "myKB" gesetzt.
Wie gehe ich da am Besten vor?
(Edit Rolf B: HTML für Lesbarkeit reformatiert)
<table>
<tr>
<td WIDTH="25%" ALIGN=RIGHT>Test: </td>
<td width=1%><input type="checkbox" name="myAuswahl[]" value="5" checked></td>
<td colspan=2>Test 1</td>
<td>27-11-2019</td>
<td width=10%><span id="myKB">102</span> kb</td>
</tr>
<tr>
<td WIDTH="25%" ALIGN=RIGHT></td>
<td width=1%><input type="checkbox" name="myAuswahl[]" value="4"></td>
<td colspan=2>Test 2</td>
<td>27-11-2019</td>
<td width=10%><span id="myKB">102</span> kb</td>
</tr>
<tr>
<td WIDTH="25%" ALIGN=RIGHT></td>
<td width=1%><input type="checkbox" name="myAuswahl[]" value="3"></td>
<td colspan=2>Test 3</td>
<td>27-11-2019</td>
<td width=10%><span id="myKB">692</span> kb</td>
</tr>
<tr>
<td WIDTH="25%" ALIGN=RIGHT></td>
<td width=1%><input type="checkbox" name="myAuswahl[]" value="2"></td>
<td colspan=2>Test 4</td>
<td>25-11-2019</td>
<td width=10%><span id="myKB">692</span> kb</td>
</tr>
</table>
Pit