index2.html 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title></title>
  6. <style>
  7. .center {
  8. margin: auto;
  9. width: 60%;
  10. border: 3px solid #73AD21;
  11. padding: 10px;
  12. }
  13. </style>
  14. <script type="text/javascript" src = './test.js'>
  15. document.write('1111111');
  16. </script>
  17. </head>
  18. <body>
  19. <br>
  20. <br>
  21. <input type="button" class="add" value=添加 onclick="myFunction()"/>
  22. <form>
  23. User name:
  24. <input type="text" name="username">
  25. User password:
  26. <input type="password" name="psw">
  27. <br><br>
  28. <input type="submit" value="Submit">
  29. </form>
  30. <form method="POST">
  31. First name:
  32. <input type="text" name="firstname" value="Mickey">
  33. Last name:
  34. <input type="text" name="lastname" value="Mouse">
  35. <br>
  36. 起始时间:
  37. <input type="datetime-local" name = "begdate">
  38. 结束时间:
  39. <input type="datetime-local" name = "enddate">
  40. 日期:
  41. <input type="date" name = "date">
  42. <br><br>
  43. <input type="submit" value="Submit">
  44. </form>
  45. <table border="1" id="t1">
  46. <tr>
  47. <th>用户标识</th>
  48. <th>ip</th>
  49. <th>时间</th>
  50. <th>油机</th>
  51. <th>油枪</th>
  52. <th>气液比</th>
  53. <th>气流量</th>
  54. <th>油流量</th>
  55. </tr>
  56. </table>
  57. </body>
  58. </html>