您好,登錄后才能下訂單哦!
這篇文章給大家介紹HTML 5中怎么使用 Input 類型,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
<input type="email" />
在提交表單時會自動驗證email的格式
效果:
URL
<input type="url" />
在提交表單時會自動驗證url的格式
效果:
NUMBER
<input type="number" max="9" min="0" step="2"/>
可以限制輸入的數字,step為上一個數字與下一個數字的間隔
效果:
RANGE
<input type="range" min="1" max="10" />
滑動條,能過選擇性的對限制范圍內的數值進行設置
效果:
Date Pickers(數據檢出器)
HTML5 擁有多個可供選取日期和時間的新輸入類型:
date - 選取日、月、年
month - 選取月、年
week - 選取周和年
time - 選取時間(小時和分鐘)
datetime - 選取時間、日、月、年(UTC 時間)
datetime-local - 選取時間、日、月、年(本地時間)
This is how Opera renders <input type="date">:
If you need a time to go with that date, Opera also supports <input type="datetime">:
If you only need a month + year (perhaps a credit card expiration date), Opera can render a <input type="month">:
Less common, but also available, is the ability to pick a specific week of a year with <input type="week">:
Last but not least, you can pick a time with <input type="time">:
地址:http://diveintohtml5.org/forms.html
以上都是從關于時間的都是網上找到,自己做的是這樣的
其中圖片中顯示的UTC為世界統一時間
SEARCH
<input id="search" type="url" list="searchlist" required /> <datalist id="searchlist"> <option value="http://www.google.com" label="Google" /> <option value="http://www.yahoo.com" label="Yahoo" /> <option value="http://www.bing.com" label="Bing" /> </datalist>
這里的datalist相當于下拉列表,可以進行選擇
效果:
TELEPHONE
<input type="telephone" />
可輸入一個電話號碼
效果:
COLOR
<input type="color"/>
可以獲取顏色
效果:
以上個人圖片效果顯示均來自opera瀏覽器
下面圖片時各主流瀏覽器對input的支持情況:
input標簽表單類型的顯示情況:
關于HTML 5中怎么使用 Input 類型就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。