日期与时间格式.html 643 B

123456789101112131415161718192021222324252627282930
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. </head>
  8. <body>
  9. <input type="date"/>
  10. <input type="time"/>
  11. <input type="month"/>
  12. <input type="datetime-local"/>
  13. <input type="email"/>
  14. <input type="number"/>
  15. <input type="password"/>
  16. <input type="search"/>
  17. <input type="tel"/>
  18. <input type="text"/>
  19. <input type="url"/>
  20. <input type="range"/>
  21. <input type="image"/>
  22. <input type="reset"/>
  23. <input type="submit"/>
  24. <input type="button" value="Button"/>
  25. <input type="color"/>
  26. <input type="checkbox"/>
  27. </body>
  28. </html>