3_输入类型.html 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Document</title>
  8. </head>
  9. <body>
  10. <form action="">
  11. text:<input type="text"> <br>
  12. email:<input type="email"><br>
  13. <!--
  14. type:email
  15. 会对输入的内容进行一个邮箱格式的校验
  16. 输入内容必须包含@ @前面和后面必须有数字 @前面不能有中文
  17. -->
  18. color:<input type="color"><br>
  19. <!--
  20. type:color
  21. 调色板
  22. -->
  23. date: <input type="date"><br>
  24. <!--
  25. type:date
  26. 实现了日历的功能 带有自己的样式
  27. -->
  28. time: <input type="time"><br>
  29. <!--
  30. type:time
  31. 实现一个选取时间的功能
  32. -->
  33. range: <input type="range"><br>
  34. range: <input type="range" step="20"><br>
  35. <!--
  36. type:range
  37. 滑块类型
  38. step属性 定义每一次滑动的距离
  39. -->
  40. search: <input type="search"><br>
  41. <!--
  42. type:search
  43. 输入框可以输入内容 但是带有自己的清除按键
  44. -->
  45. number: <input type="number" step="2" max="20" min="9"><br>
  46. <!--
  47. type:number
  48. 当输入的数字 不是规定的有效值 那么会默认先调节为最近的有效值
  49. max 最大值
  50. min 最小值
  51. -->
  52. tel: <input type="tel" maxlength="11"><br>
  53. <!--
  54. type:tel
  55. maxlength 输入最大的长度
  56. 手机端会唤起拨号键盘
  57. -->
  58. file: <input type="file" accept="image/png"><br>
  59. <!--
  60. type:file
  61. 上传文件
  62. accept 设置选择文件的类型
  63. -->
  64. <select name="" id="">
  65. <option value="1">1</option>
  66. <option value="2">2</option>
  67. </select><br>
  68. <input type="text" list="list1">
  69. <datalist id="list1">
  70. <option value="xiaoming" label="zhang">xiaoming</option>
  71. <option value="xiaohong">xiaohong</option>
  72. <option value="xiaoming" label="wang">xiaoming</option>
  73. </datalist>
  74. <input type="submit">
  75. </form>
  76. </body>
  77. </html>