HTML5引入了许多新的输入类型,以提供更多用户友好的输入方式。以下是一些常见的HTML5输入类型:

1. 文本输入(Text):
   <input type="text" name="username" />

2. 密码输入(Password):
   <input type="password" name="password" />

3. 数字输入(Number):
   <input type="number" name="quantity" />

4. 电子邮件输入(Email):
   <input type="email" name="email" />

5. URL输入(URL):
   <input type="url" name="website" />

6. 日期输入(Date):
   <input type="date" name="birthdate" />

7. 时间输入(Time):
   <input type="time" name="meeting-time" />

8. 日期和时间输入(Datetime):
   <input type="datetime-local" name="meeting-datetime" />

9. 搜索框(Search):
   <input type="search" name="search" />

10. 颜色选择器(Color):
   <input type="color" name="color" />

这些类型使得在不同场景中更容易获取正确格式的用户输入。请注意,不同浏览器对这些输入类型的支持程度可能有所不同。


转载请注明出处:http://www.zyzy.cn/article/detail/3675/HTML5