Hallo
Also ich weiß nicht bin wohl nicht dafür geschaffen das zu machen.
Aber vielleicht erbarmt sich ja jemand mir den Code mal zu vervollständigen. Ich bekomme es einfach nicht hin das er mir 10 Input Felder macht.
<html>
<head>
<script type="text/javascript">
// Last updated 2006-02-21
function addRowToTable()
{
var tbl = document.getElementById('Tabelle');
var lastRow = tbl.rows.length;
// if there's no header row in the table, then iteration = lastRow + 1
var iteration = lastRow;
var row = tbl.insertRow(lastRow);
// left cell
var cellLeft = row.insertCell(2);
var textNode = document.createTextNode(iteration);
cellLeft.appendChild(textNode);
}
</script>
</head>
<body>
<form name="Formular" action="">
<input type="button" value=" OK " onclick="addRowToTable()"><br>
</form>
<table border="2" id="Tabelle">
<tr>
<td>Eine Tabelle</td>
<td>Eine Tabelle2</td>
<td>Eine Tabelle3</td>
<td>Eine Tabelle4</td>
</tr>
</table>
</body>
</html>