Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
document.getElementById("td1").firstChild.nodeValue = +document.getElementById("td1").firstChild.nodeValue + +document.getElementById("td2").firstChild.nodeValue;
<table>
<thead>
<tr>
<th>Rank</th>
<th>Name</th>
<th>Spiele</th>
<th>Tore</th>
<th>Tore pro Spiel</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Tobias Landolt</td>
<td id="td1">268</td>
<td id="td2">124</td>
<td></td>
</tr>
</tbody>
</table>
<html>
<head>
<title>Tabellen Test</title>
<script type="text/javascript">
window.onload = function () {
document.getElementById("td3").firstChild.nodeValue = (document.getElementById("td2").firstChild.nodeValue / document.getElementById("td1").firstChild.nodeValue).toFixed(2);
document.getElementById("td6").firstChild.nodeValue = parseInt(document.getElementById("td4").firstChild.nodeValue) + parseInt(document.getElementById("td5").firstChild.nodeValue);
document.getElementById("td7").firstChild.nodeValue = (document.getElementById("td6").firstChild.nodeValue / document.getElementById("td1").firstChild.nodeValue).toFixed(2);
document.getElementById("td8").firstChild.nodeValue = parseInt(document.getElementById("td2").firstChild.nodeValue) + parseInt(document.getElementById("td6").firstChild.nodeValue);
document.getElementById("td9").firstChild.nodeValue = (document.getElementById("td8").firstChild.nodeValue / document.getElementById("td1").firstChild.nodeValue).toFixed(2);
}
</script>
<style type="text/css">
table { width : auto ; text-align: center ; border-left : 1px solid #000 ; }
thead { background-color : #000 ; color : #fff ; }
th, td { width : 100px ; border-bottom : 1px solid #000 ; border-right: 1px solid #000 ; }
</style>
</head>
<body>
<table cellpadding="2px" cellspacing="0">
<thead>
<tr>
<th>Rank</th>
<th>Name</th>
<th>Spiele</th>
<th>Tore</th>
<th>Tps</th>
<th>1.As</th>
<th>2.As</th>
<th>AsG</th>
<th>ApS</th>
<th>Pkte</th>
<th>PpS</th>
</tr>
</thead>
<tbody>
<tr>
<td>1.</td>
<td>Tobias Landolt</td>
<td id="td1">268</td>
<td id="td2">129</td>
<td id="td3"> </td>
<td id="td4">124</td>
<td id="td5">36</td>
<td id="td6"> </td>
<td id="td7"> </td>
<td id="td8"> </td>
<td id="td9"> </td>
</tr>
</tbody>
</table>
</body>
</html>