HTML5 Input 類型
HTML5 擁有多個新的表單輸入類型。這些新特性提供了更好的輸入控制和驗證。
本章全面介紹這些新的輸入類型:
color
date
-
datetime
datetime-local
#email
month
- number
- range
#search
tel time
url
#week
注意
:並不是所有的主流瀏覽器都支援新的input類型,不過您已經可以在所有主流的瀏覽器中使用它們了。即使不被支持,仍然可以顯示為常規的文字域。Input 類型: color
#color 類型用在input欄位主要用於選取顏色,如下所示:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>php中文网(php.cn)</title> </head> <body> <form action=" " method="post"> 选择你喜欢的颜色: <input type="color" name="favcolor"><br> <input type="submit"> </form> <?php echo $_POST['favcolor']; ?> </body> </html>執行程式嘗試
Input 類型: date
#########date 類型允許你從一個日期選擇器選擇一個日期。 ###<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文网(php.cn)</title> </head> <body> <form action="demo-form.php"> 生日: <input type="date" name="bday"> <input type="submit"> </form> </body> </html>###執行程式嘗試###############Input 類型: datetime############datetime 類型允許你選擇一個日期( UTC 時間)。 ############實例##########
定義一個日期和時間控制器(本地時間):
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>php中文网(php.cn)</title> </head> <body> <form action="demo-form.php"> 生日 (日期和时间): <input type="datetime" name="bdaytime"> <input type="submit"> </form> </body> </html>
運行程式嘗試一下
Input 類型: datetime-local
datetime-local 類型允許你選擇一個日期和時間(無時區).
##實例
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>php中文网(php.cn)</title> </head> <body> <form action="demo-form.php"> 生日 (日期和时间): <input type="datetime-local" name="bdaytime"> <input type="submit"> </form> </body> </html>執行程式嘗試
#Input 類型: email
email 類型用於應該包含e-mail 位址的輸入域。實例
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>php中文网(php.cn)</title> </head> <body> <form action="demo-form.php"> E-mail: <input type="email" name="usremail"> <input type="submit"> </form> </body> </html>執行程式輸入一個合法和不合法的email 嘗試一下
注意: Internet Explorer 9 及更早IE版本不支援type="email"
Input 類型: month
month 類型允許你選擇一個月份。實例
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>php中文网(php.cn)</title> </head> <body> <form action="demo-form.php"> 生日 ( 月和年 ): <input type="month" name="bdaymonth"> <input type="submit"> </form> </body> </html>執行程式嘗試
Input 類型: number
number 類型用於應該包含數值的輸入域。
您也能夠設定對所接受的數字的限定:
實例
#定義一個數值輸入域(限定):
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>php中文网(php.cn)</title> </head> <body> <form action="demo-form.php"> 数量 ( 1 到 5 之间): <input type="number" name="quantity" min="1" max="5"> <input type="submit"> </form> </body> </html>
執行程式嘗試
使用下面的屬性來規定對數字類型的限定:
max- 規定允許的最大值
min - 規定允許的最小值
#step - 規定合法的數字間隔(如果step="3",則合法的數是-3,0,3,6 等)
value - 規定預設值
實例
帶有所有限定屬性的範例
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>php中文网(php.cn)</title> </head> <body> <form action="demo_form.php" method="get"> <input type="number" name="points" min="0" max="10" step="3" value="6"> <input type="submit"> </form> </body> </html>
運行程式嘗試
Input 類型: range
range 類型用於應該包含一定範圍內數字值的輸入域。
range 類型顯示為滑動條。
實例
定義一個不需要非常精確的數值(類似滑桿控制):
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>php中文网(php.cn)</title> </head> <body> <form action="demo-form.php" method="get"> Points: <input type="range" name="points" min="1" max="10"> <input type="submit"> </form> </body> </html>
執行程式嘗試一下
請使用下面的屬性來規定數字類型的限定:
max - 規定允許的最大值
min - 規定允許的最小值
step - 規定合法的數字間隔
value - 規定預設值
#Input 類型: search
search 類型用於搜尋網域,例如網站搜尋或Google 搜尋。
實例
定義一個搜尋欄位 (類似網站搜尋或Google搜尋):
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>php中文网(php.cn)</title> </head> <body> <form action="demo-form.php"> Search Google: <input type="search" name="googlesearch"><br> <input type="submit"> </form> </body> </html>
執行程式嘗試
Input 類型: tel
#實例
定義輸入電話號碼欄位:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>php中文网(php.cn)</title> </head> <body> <form action="demo-form.php"> 电话号码: <input type="tel" name="usrtel"><br> <input type="submit"> </form> </body> </html>
執行程式嘗試一下
Input 類型: time
time 類型允許你選擇一個時間。
實例
定義可輸入時間控制器(無時區):
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>php中文网(php.cn)</title> </head> <body> <form action="demo-form.php"> 选择时间: <input type="time" name="usr_time"> <input type="submit"> </form> </body> </html>
執行程式嘗試
Input 類型: url
url 類型用於應該包含URL 位址的輸入域。
在提交表單時,會自動驗證 url 網域的值。
實例
定義輸入URL欄位:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>php中文网(php.cn)</title> </head> <body> <form action="demo-form.php"> 添加你的主页: <input type="url" name="homepage"><br> <input type="submit"> </form> </body> </html>
運行程式嘗試
##Input 類型: week
week 類型允許你選擇週和年。實例
<form action="demo-form.php"> 选择周: <input type="week" name="year_week"> <input type="submit"> </form>執行程式嘗試
HTML5 <input> 標籤
# 標籤 | # 描述 |
<input> |
描述input輸入器
注意
:並不是所有的主流瀏覽器都支援新的input類型,不過您已經可以在所有主流的瀏覽器中使用它們了。即使不被支持,仍然可以顯示為常規的文字域。