首页 > 代码库 > Html5】 按钮系列

Html5】 按钮系列

<input type="email">      在输入框内只能输入格式为邮箱的内容
<input type="url">      在输入框内只能输入格式为网址的内容
技术分享 

<input type="number" max="100" min="1" step="2">   在输入框内只能输入格式为网址的内容,并且最大值为100最小值为2,点击增加或者减少按钮,每次增加/减少2
技术分享  技术分享 
<input type="range"> 可拖动数字选择条带有 slider 控件的数字字段
技术分享 

<input type="date"> 年月日选择框
技术分享 
<input type="month"> 年月选择框 无法选择日
技术分享 
<input type="week">周选择框
技术分享 
<input type="time"  max="100" min="1" step="2"> 时分秒选择框 与数字选择框一样 可以限制大小
技术分享 
<input type="search"> 搜索框 比如站内搜索或谷歌搜索等【具体用法 大致和ctrl+f差不多】

<input type="tel"> 手机输入框 【没啥意义= = 感觉字母数字都可以输入哪怕是标点符号】

<input type="color"> 颜色选择器
技术分享

Html5】 按钮系列