Guest User

Untitled

a guest
May 22nd, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. <html>
  2. <head>
  3. </head>
  4. <body>
  5. <table id='a'>
  6. </table>
  7. <script type='text/javascript'>
  8. var table = document.getElementById('a');
  9. var tr = document.createElement('tr');
  10. var td;
  11. for (var index = 0; index < 10; index++) {
  12. td = document.createElement('td');
  13. td.appendChild(document.createTextNode(index));
  14. tr.appendChild(td);
  15. }
  16.  
  17. //tr.innerHTML = '<td>hola</td>';
  18. table.appendChild(tr);
  19. </script>
  20. </body>
  21. </html>
Add Comment
Please, Sign In to add comment