Thread Mit Javascript Zeilen in einer Tabelle hinzufügen
(12 answers)
Opened by Kuerbis at 2011-08-26 00:22 Code (html): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 <!DOCTYPE HTML> <html> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> <script type="text/javascript"> function ad_row() { var nummer = 1; var tabellen_id = "t1"; var trhtml = document.getElementById( tabellen_id ).insertRow( nummer ); var tdhtml1 = document.createElement( "td" ); var tdhtml2 = document.createElement( "td" ); var tdhtml3 = document.createElement( "td" ); tdhtml1.innerHTML = ''; // content tdhtml2.innerHTML = ''; tdhtml3.innerHTML = ''; trhtml.appendChild( tdhtml1 ); trhtml.appendChild( tdhtml2 ); trhtml.appendChild( tdhtml3 ); } </script> </head> <body> <form> <br /><br /> <table id="t1" border="1"> <tr><th>Menge</th><th>Bezeichnung</th><th>Euro/Stück</th></tr> <tr> <td><input type="number" name="menge" /></td> <td><input type="text" name="bezeichnung" /></td> <td><input type="text" name="euro_stueck" /></td> </tr> </table> <br /><br /> <input type="button" value="Eintrag hinzufügen" onclick="ad_row()" /> <br /><br /> <br /><input type="submit" value="OK"/> </form> </body> </html> Wie kann ich erreichen, dass die Zeilenhöhe gleich ist wie bei der ersten Zeile, ohne einen Content einzufügen? |