对齐行中的单元格内容

  1. <html>
  2. <head>
  3. <script type="text/javascript">
  4. function leftAlign()
  5. {
  6. document.getElementById('header').align="left";
  7. }
  8. </script>
  9. </head>
  10. <body>
  11.  
  12. <table width="100%" border="1">
  13. <tr id="header">
  14. <th></th>
  15. <th></th>
  16. </tr>
  17. <tr>
  18. <td>John</td>
  19. <td>Adams</td>
  20. </tr>
  21. </table>
  22. <br />
  23. <input type="button" onclick="leftAlign()" value="左对齐表格行" />
  24.  
  25. </body>
  26. </html>