龙空技术网

HTML5基础知识(4)新增的表单属性

腾石建站 435

前言:

而今我们对“html5的target属性”都比较看重,兄弟们都想要剖析一些“html5的target属性”的相关资讯。那么小编也在网上汇集了一些有关“html5的target属性””的相关内容,希望我们能喜欢,大家一起来学习一下吧!

用于HTML5基础知识(3)新增的Input类型(重要)这一节没有审核通过,现在简单介绍一下这节:

html5新曾的Input类型主要有:email邮箱验证,url 网址验证,number数字验证,range范围,Date pickers (date, month, week, time, datetime, datetime-local)时间日期,search搜索验证,color颜色选取,tel电话验证等等

Input 类型 - email 验证邮箱 写法:

E-mail: <input type="email" name="user_email" />

Input 类型 - url 验证url,写法:

<input type="url" name="user_url" />

Input 类型 - number 验证数字

Input 类型 - range 验证输入范围:

<input type="range" name="points" min="1" max="10" />

Input 类型 - Date Pickers(日期选择器)分别有:

date - 选取日、月、年

month - 选取月、年

week - 选取周和年

time - 选取时间(小时和分钟)

datetime - 选取时间、日、月、年(UTC 时间)

datetime-local - 选取时间、日、月、年(本地时间)

Input 类型: color,主要用于选取颜色

<input type="color" name="favcolor">

Input 类型: tel 验证电话号码(不推荐)

可能是这些知识大家都在写,发布的时候提示“近期在全网出现过高度相似文章被认为是旧闻”,说多了都是泪!

HTML5 新增的表单元素

datalist、keygen、Output这三种,但是都不是很推荐的,可以跳过!

datalist 元素 datalist 元素规定输入域的选项列表。不推荐

<input type="url" list="url_list" name="link" /><datalist id="url_list">

<option label="W3School" value="" />

<option label="Google" value="" />

<option label="Microsoft" value="" /></datalist>

效果:

keygen 元素(现在无需了解)

keygen 元素的作用是提供一种验证用户的可靠方法。keygen 元素是密钥对生成器(key-pair generator)。当提交表单时,会生成两个键,一个是私钥,一个公钥。私钥(private key)存储于客户端,公钥(public key)则被发送到服务器。公钥可用于之后验证用户的客户端证书(client certificate)。

output 元素

output 元素用于不同类型的输出,比如计算或脚本输出:(现在无需了解)

<output id="result" onforminput="resCalc()"></output>

HTML5 的新的表单属性

新的 form 属性:

autocomplete、novalidate

新的 input 属性:

autocomplete、autofocus、form、form overrides (formaction, formenctype, formmethod, formnovalidate, formtarget)、height 和 width、list、min, max 和 step、multiple、pattern (regexp)、placeholder、required,虽然很多,但是大部分都不常用,只介绍平时常用的!

(1)autocomplete属性规定 form 或 input 域应该拥有自动完成功能。

(2)autofocus 属性规定在页面加载时,域自动地获得焦点。

<input type="text" name="user_name" autofocus="autofocus" />

(3)form 属性规定输入域所属的一个或多个表单。form 属性必须引用所属表单的 id:

<form action="demo_form.asp" method="get" id="user_form">

姓名:<input type="text" name="fname" />

<input type="submit" />

</form>

性别: <input type="text" name="lname" form="user_form" />

(4)表单重写属性(form override attributes)允许您重写 form 元素的某些属性设定。表单重写属性有:

formaction - 重写表单的 action 属性

formenctype - 重写表单的 enctype 属性

formmethod - 重写表单的 method 属性

formnovalidate - 重写表单的 novalidate 属性

formtarget - 重写表单的 target 属性

<form action="demo_form.asp" method="get" id="user_form">

<input type="submit" value="Submit" />

<input type="submit" formaction="demo_admin.asp" value="Submit as admin" /></form>//实际运行的时候跳转demo_admin.asp

(5)min、max 和 step 属性

min、max 和 step 属性用于为包含数字或日期的 input 类型规定限定(约束)。

max 属性规定输入域所允许的最大值。

min 属性规定输入域所允许的最小值。

step 属性为输入域规定合法的数字间隔(如果 step="3",则合法的数是 -3,0,3,6 等)。

<input type="number" name="points" min="0"max="10"step="3" />

此例子只能填写0、3、6、9

(6)multiple 属性

multiple 属性规定输入域中可选择多个值。

<input type="file" name="img" multiple="multiple" />

//表示可以同时上传多个图片

(7)pattern 属性

pattern 属性规定用于验证 input 域的模式(pattern)。

模式(pattern) 是正则表达式。您可以在我们的 JavaScript 教程中学习到有关正则表达式的内容。

<input type="text" name="country_code"pattern="[A-z]{3}" title="Three letter country code" />

表示:只允许输入3个任意字母

(9)placeholder 属性

placeholder 属性提供一种提示(hint),描述输入域所期待的值。(这个常用,不做解释)

(10)required 属性

required 属性规定必须在提交之前填写输入域(不能为空)

Name: <input type="text" name="usr_name" required="required" />

标签: #html5的target属性