本节介绍HTML输入类型。也就是
元素
type
属性的可以使用的值。这在桌面程序中是通过不同的控件实现的。
用于应该包含日期的输入字段。
根据浏览器支持,日期选择器会出现输入字段中。
<form>
Birthday:
<input type="date" name="bday">
form>
<form>
Enter a date before 1980-01-01:
<input type="date" name="bday" max="1979-12-31"><br>
Enter a date after 2000-01-01:
<input type="date" name="bday" min="2000-01-02"><br>
form>
用于应该包含颜色的输入字段。
<form>
Select your favorite color:
<input type="color" name="favcolor">
form>
用于应该包含一定范围内的值的输入字段。
<form>
<input type="range" name="points" min="0" max="10">
form>
您能够使用如下属性来规定限制:min、max、step、value。
允许用户选择月份和年份。
根据浏览器支持,日期选择器会出现输入字段中。
<form>
Birthday (month and year):
<input type="month" name="bdaymonth">
form>
允许用户选择周和年。
<form>
Select a week:
<input type="week" name="week_year">
form>
允许用户选择时间(无时区)。
<form>
Select a time:
<input type="time" name="usr_time">
form>
允许用户选择日期和时间(有时区)。
<form>
Birthday (date and time):
<input type="datetime" name="bdaytime">
form>
允许用户选择日期和时间(无时区)。
<form>
Birthday (date and time):
<input type="datetime-local" name="bdaytime">
form>
用于应该包含电子邮件地址的输入字段。
根据浏览器支持,能够在被提交时自动对电子邮件地址进行验证。
某些智能手机会识别 email 类型,并在键盘增加 “.com” 以匹配电子邮件输入。
<form>
E-mail:
<input type="email" name="email">
form>
·· 用于搜索字段(搜索字段的表现类似常规文本字段)。
<form>
Search Google:
<input type="search" name="googlesearch">
form>
用于应该包含电话号码的输入字段。
目前只有 Safari 8 支持 tel 类型。
<form>
Telephone:
<input type="tel" name="usrtel">
form>
用于应该包含 URL 地址的输入字段。
根据浏览器支持,在提交时能够自动验证 url 字段。
某些智能手机识别 url 类型,并向键盘添加 “.com” 以匹配 url 输入。
<form>
Add your homepage:
<input type="url" name="homepage">
form>
在实际项目中,根据现实业务需要,回头再详细了解HTML输入类型也是可以的。