HTML5--表单的新增type属性

  本文介绍了一些html5相对于之前的版本所没有的部分表单标签,用于平时查阅即可。

一、邮箱:

<input type="email">

   email提供了默认的电子邮箱的完整验证:要求必须包含@符号,同时必须包含服务器名称,如果不能满足验证,则会阻止当前的数据提交

二、电话:

<input type="tel"> 

  tel它并不是来实现验证。它的本质目的是为了能够在移动端打开数字键盘。意味着数字键盘限制了用户只能输入数字。  如何查看效果:qq发送文件>>手机端使用qq来接收>>使用手机浏览器查看。

三、网址:

<input type="url">

   验证只能输入合法的网址:必须包含http:// 。

四、数量:

<input type="number" value="60" max="100" min="0">

  number:只能输入数字(包含小数点),不能输入其它的字符
    max:最大值
    min:最小值
      value:默认值

五、search:

<input type="search">

  search:可以提供更人性化的输入体验。

 六、 时间(24小时):

<input type="time">

七、日期(年 月 日):

<input type="date">

八、月份:

<input type="month">

九、星期:

<input type="week">

  暂时写这几个常用的,后续慢慢添加。

猜你喜欢

转载自www.cnblogs.com/hexuhua/p/10488700.html
今日推荐