HTML5 新的 Input 类型
HTML5 拥有多个新的表单输入类型。这些新特性提供了更好的输入控制和验证。
本章全面介绍这些新的输入类型:
- color 选取颜色 <input type="color" id="favcolor">
- date 选择日期 <input type="date" name="bday">
- datetime
- datetime-local
- email 提交时会验证email是否合法 <input type="email" name="email">
- month
- number 定义一个数字区域 <input type="number" min="1" max="5"> 限定输入1~5
- range <input type="range" min="1" max="10">
- search
- tel
- time
- url
- week
原文地址:https://www.cnblogs.com/1016391912pm/p/12596364.html
时间: 2024-10-09 07:51:01