1. 限制用户输入必须为邮箱类型
type="email"
注: 必须含有@,@前后内容不能为空
2. 限制用户输入必须为url地址
type="url"
注: 必须含有http: ,并且http: 后面要有内容
3.限制用户输入必须为数字
type="number"
eg:
<input type="number" max="30" min="1" value="1" step="2"/>
注: max为可以输入的最大值,min为可以输入的最小值,value是默认值,step为每次递增和递减的数量
4. 产生一个滑动条的表单
type="range"
eg:
<input type="range" min="1" max="100" value="20"/>
5. 产生一个选择颜色的面板
type="color"
6. 选择一个日期
type="date"
7.选择一个时间(时、分)
type="time"
8.选择一个月份(年、月)
type="month"
9. 选择当前日期或指定日期是这一年的第几周
type="week"
本文链接:https://my.lmcjl.com/post/20773.html
展开阅读全文
4 评论