19、HTML5 新的 Input 類型
HTML5 擁有多個新的表單輸入類型。這些新特性提供了更好的輸入控制和驗證
本章全面介紹這些新的輸入類型:
- color
- date
- datetime
- datetime-local
- month
- number
- range
- search
- tel
- time
- url
- week
color
color 類型用在input字段主要用於選取顏色
從拾色器中選擇一個顏色:
<form action="demo-form.php"> 選擇你喜歡的顏色: <input type="color" name="favcolor"><br> <inputtype="submit"> </form>
date
date 類型允許你從一個日期選擇器選擇一個日期
定義一個時間控制器:
<form action="demo-form.php"> 生日: <input type="date" name="bday"> <input type="submit"> </form>
datetime
datetime 類型允許你選擇一個日期(UTC 時間)
定義一個日期和時間控制器(本地時間):
<form action="demo-form.php">生日: <input type="date" name="bday"> <input type="submit"> </form>
datetime-local
datetime-local 類型允許你選擇一個日期和時間 (無時區)
定義一個日期和時間 (無時區):
<form action="demo-form.php"> 生日 (日期和時間): <input type="datetime-local" name="bdaytime"> <input type="submit"> </form>
email 類型用於應該包含 e-mail 地址的輸入域
在提交表單時,會自動驗證 email 域的值是否合法有效:
<form action="demo-form.php"> E-mail: <input type="email" name="usremail"> <input type="submit"> </form>
提示: iPhone 中的 Safari 瀏覽器支持 email 輸入類型,並通過改變觸摸屏鍵盤來配合它(添加 @ 和 .com 選項)
month
month 類型允許你選擇一個月份
定義月與年 (無時區):
<form action="demo-form.php"> 生日 ( 月和年 ): <input type="month" name="bdaymonth"> <input type="submit"> </form>
number
number 類型用於應該包含數值的輸入域
您還能夠設定對所接受的數字的限定:
<form action="demo-form.php"> 數量 ( 1 到 5 之間): <input type="number" name="quantity" min="1" max="5"> <input type="submit"> </form>
使用下面的屬性來規定對數字類型的限定:
屬性 | 描述 |
---|---|
disabled | 規定輸入字段是禁用的 |
max | 規定允許的最大值 |
maxlength | 規定輸入字段的最大字符長度 |
min | 規定允許的最小值 |
pattern | 規定用於驗證輸入字段的模式 |
readonly | 規定輸入字段的值無法修改 |
required | 規定輸入字段的值是必需的 |
size | 規定輸入字段中的可見字符數 |
step | 規定輸入字段的合法數字間隔 |
value | 規定輸入字段的默認值 |
range
range 類型用於應該包含一定範圍內數字值的輸入域
range 類型顯示為滑動條
<form action="demo-form.php" method="get"> Points: <input type="range" name="points" min="1" max="10"> <input type="submit"> </form>
請使用下面的屬性來規定對數字類型的限定:
- max - 規定允許的最大值
- min - 規定允許的最小值
- step - 規定合法的數字間隔
- value - 規定默認值
search
search 類型用於搜索域,比如站點搜索或 Google 搜索
定義一個搜索字段 (類似站點搜索或者Google搜索):
<form action="demo-form.php"> Search Google: <input type="search" name="googlesearch"><br> <input type="submit"> </form>
tel
定義輸入電話號碼字段:
<form action="demo-form.php"> 電話號碼: <input type="tel" name="usrtel"><br> <input type="submit"> </form>
time
time 類型允許你選擇一個時間
定義可輸入時間控制器(無時區)
<form action="demo-form.php"> 選擇時間: <input type="time" name="usr_time"> <input type="submit"> </form>
url
url 類型用於應該包含 URL 地址的輸入域
在提交表單時,會自動驗證 url 域的值
定義輸入URL字段:
<form action="demo-form.php"> 添加你的主頁: <input type="url" name="homepage"><br> <input type="submit"> </form>
提示: iPhone 中的 Safari 瀏覽器支持 url 輸入類型,並通過改變觸摸屏鍵盤來配合它(添加 .com 選項)
week
week 類型允許你選擇周和年
定義周和年 (無時區):
<form action="demo-form.php"> 選擇周: <input type="week" name="year_week"> <input type="submit"> </form>
19、HTML5 新的 Input 類型