HTML 输入属性
HTML 输入属性有value,readonly,disabled,size,maxlength,而在HTML5 中追加了autocomplete,novalidate等新属性,本章主要讲解这些输入属性的含义及用法。
value 属性
value 属性规定输入字段的初始值:
实例
<!DOCTYPE html>
<html>
<body>
<form action="/example/html/html_form.aspx">
姓氏:<br>
<input type="text" name="firstname" value="韩">
<br>
名字:<br>
<input type="text" name="lastname">
</form>
</body>
</html>
readonly 属性
readonly
属性规定输入字段为只读(不能修改):
<!DOCTYPE html>
<html>
<body>
<form action="/example/html/html_form.aspx">
姓氏:<br>
<input type="text" name="firstname" value ="John" readonly>
<br>
名字:<br>
<input type="text" name="lastname">
</form>
</body>
</html>
readonly
属性不需要值。它等同于 readonly="readonly"。
disabled 属性
disabled 属性规定输入字段是禁用的。
被禁用的元素是不可用和不可点击的。
被禁用的元素不会被提交。
实例
<!DOCTYPE html>
<html>
<body>
<form action="/example/html/html_form.aspx">
姓氏:<br>
<input type="text" name="firstname" value ="韩" disabled>
<br>
名字:<br>
<input type="text" name="lastname">
</form>
</body>
</html>
disabled
属性不需要值。它等同于 disabled="disabled"。
size 属性
size 属性规定输入字段的尺寸(以字符计):
<!DOCTYPE html>
<html>
<body>
<form action="/example/html/html_form.aspx">
姓氏:<br>
<input type="text" name="firstname" value ="韩" size="40">
<br>
名字:<br>
<input type="text" name="lastname">
</form>
</body>
</html>
maxlength 属性
maxlength 属性规定输入字段允许的最大长度:
<!DOCTYPE html>
<html>
<body>
<form action="/example/html/html_form.aspx">
姓氏:<br>
<input type="text" name="firstname" maxlength="10">
<br>
名字:<br>
<input type="text" name="lastname">
</form>
</body>
</html>
如设置 maxlength
属性,则输入控件不会接受超过所允许数的字符。
该属性不会提供任何反馈。如果需要提醒用户,则必须编写 JavaScript 代码。
HTML5 属性
HTML5 为 <input> 增加了如下属性:
- autocomplete
- autofocus
- form
- formaction
- formenctype
- formmethod
- formnovalidate
- formtarget
- height 和 width
- list
- min 和 max
- multiple
- pattern (regexp)
- placeholder
- required
- step
并为 <form> 增加如需属性:
- autocomplete
- novalidate
autocomplete 属性
autocomplete
属性规定表单或输入字段是否应该自动完成。
当自动完成开启,浏览器会基于用户之前的输入值自动填写值。
提示:您可以把表单的 autocomplete
设置为 on,同时把特定的输入字段设置为 off,反之亦然。
autocomplete 属性适用于 <form> 以及如下 <input> 类型:text、search、url、tel、email、password、datepickers、range 以及 color。
自动完成开启的 HTML 表单(某个输入字段为 off):
<!DOCTYPE HTML>
<html>
<body>
<form action="/example/html5/html5_form.aspx" method="get" autocomplete="on">
姓氏:<input type="text" name="fname" /><br />
名字: <input type="text" name="lname" /><br />
E-mail: <input type="email" name="email" autocomplete="off" /><br />
<input type="submit" />
</form>
<p>填写并提交表单,然后重新加载该页面,看看自动完成功能是如何工作的。</p>
<p>注意,表单的自动完成功能是打开的,但是 e-mail 字段的自动完成功能是关闭的。</p>
</body>
</html>
提示:在某些浏览器中,您也许需要手动启用自动完成功能。
novalidate 属性
novalidate
属性属于 <form> 属性。
如果设置,则 novalidate
规定在提交表单时不对表单数据进行验证。
指示表单在被提交时不进行验证:
<!DOCTYPE HTML>
<html>
<body>
<form action="/example/html5/html5_form.aspx" method="get" novalidate="novalidate">
E-mail: <input type="email" name="user_email" />
<input type="submit" />
</form>
</body>
</html>
autofocus 属性
autofocus 属性是布尔属性。
如果设置,则规定当页面加载时 <
input> 元素应该自动获得焦点。
使 姓氏 输入字段在页面加载时自动获得焦点:
<!DOCTYPE html>
<html>
<body>
<form action="/example/html5/html5_form.aspx">
姓氏: <input type="text" name="fname" autofocus><br>
名字: <input type="text" name="lname"><br>
<input type="submit">
</form>
<p><b>注释:</b>Internet Explorer 9 以及更早的版本不支持 input 标签的 autofocus 属性。</p>
</body>
</html>
form 属性
form
属性规定 <input> 元素所属的一个或多个表单。
提示:如需引用一个以上的表单,请使用空格分隔的表单 id 列表。
输入字段位于 HTML 表单之外(但仍属表单):
<!DOCTYPE HTML>
<html>
<body>
<form action="/example/html5/html5_form.aspx" method="get" id="form1">
姓氏: <input type="text" name="fname" /><br />
<input type="submit" value="提交" />
</form>
<p>下面的 "名字" 字段位于 form 元素之外,但仍然是表单的一部分。</p>
名字: <input type="text" name="lname" form="form1" />
</body>
</html>
formaction 属性
formaction
属性规定当提交表单时处理该输入控件的文件的 URL。
formaction
属性覆盖 <form> 元素的 action 属性。
formaction
属性适用于 type="submit" 以及 type="image"。
拥有两个两个提交按钮并对于不同动作的 HTML 表单:
<!DOCTYPE HTML>
<html>
<body>
<form action="/example/html5/html5_form.aspx" method="get">
姓氏: <input type="text" name="fname" /><br />
名字: <input type="text" name="lname" /><br />
<input type="submit" value="提交" /><br />
<input type="submit" formaction="/example/html5/html5_form_admin.aspx" value="以管理员身份提交" />
</form>
</body>
</html>
formenctype 属性
formenctype
属性规定当把表单数据(form-data)提交至服务器时如何对其进行编码(仅针对 method="post" 的表单)。
formenctype
属性覆盖 <form> 元素的 enctype 属性。
formenctype
属性适用于 type="submit" 以及 type="image"。
发送默认编码以及编码为 "multipart/form-data"(第二个提交按钮)的表单数据(form-data):
<!DOCTYPE HTML>
<html>
<body>
<form action="/example/html5/html5_form.aspx" method="post">
姓名: <input type="text" name="fname" /><br />
<input type="submit" value="提交" />
<input type="submit" formenctype="multipart/form-data" value="以 Multipart/form-data 编码提交" />
</form>
</body>
</html>
formmethod 属性
formmethod
属性定义用以向 action URL 发送表单数据(form-data)的 HTTP 方法。
formmethod
属性覆盖 <form> 元素的 method 属性。
formmethod
属性适用于 type="submit" 以及 type="image"。
第二个提交按钮覆盖表单的 HTTP 方法:
<!DOCTYPE HTML>
<html>
<body>
<form action="/example/html5/html5_form.aspx" method="get">
姓氏: <input type="text" name="fname" /><br />
名称: <input type="text" name="lname" /><br />
<input type="submit" value="提交" />
<input type="submit" formmethod="post" formaction="/example/html5/html5_form.aspx" value="使用 POST 提交" />
</form>
</body>
</html>
formnovalidate 属性
novalidate
属性是布尔属性。
如果设置,则规定在提交表单时不对 <input> 元素进行验证。
formnovalidate
属性覆盖 <form> 元素的 novalidate 属性。
formnovalidate
属性可用于 type="submit"。
拥有两个提交按钮的表单(验证和不验证):
<!DOCTYPE HTML>
<html>
<body>
<form action="/example/html5/html5_form.aspx" method="get">
E-mail: <input type="email" name="userid" /><br />
<input type="submit" value="提交" /><br />
<input type="submit" formnovalidate="formnovalidate" value="进行没有验证的提交" />
</form>
</body>
</html>
formtarget 属性
formtarget
属性规定的名称或关键词指示提交表单后在何处显示接收到的响应。
formtarget
属性会覆盖 <form> 元素的 target 属性。
formtarget
属性可与 type="submit" 和 type="image" 使用。
这个表单有两个提交按钮,对应不同的目标窗口:
<!DOCTYPE HTML>
<html>
<body>
<form action="/example/html5/html5_form.aspx" method="get">
姓氏: <input type="text" name="fname" /><br />
名字: <input type="text" name="lname" /><br />
<input type="submit" value="提交" />
<input type="submit" formtarget="_blank" value="提交到新窗口/选项卡" />
</form>
</body>
</html>
height 和 width 属性
height 和 width 属性规定 <input> 元素的高度和宽度。
height 和 width 属性仅用于 <input type="image">。
注释:请始终规定图像的尺寸。如果浏览器不清楚图像尺寸,则页面会在图像加载时闪烁。
把图像定义为提交按钮,并设置 height 和 width 属性:
<!DOCTYPE HTML>
<html>
<body>
<form action="/example/html5/html5_form.aspx" method="get">
姓氏: <input type="text" name="fname" /><br />
名字: <input type="text" name="lname" /><br />
<input type="image" src="/images/add.gif" alt="Submit" width="128" height="128"/>
</form>
<p><b>注释:</b>默认地,image 输入类型会发生点击图像按钮时的 X 和 Y 坐标。</p>
</body>
</html>
list 属性
list
属性引用的 <datalist> 元素中包含了 <input> 元素的预定义选项。
使用 <datalist> 设置预定义值的 <input> 元素:
<!DOCTYPE HTML>
<html>
<body>
<input list="cars" />
<datalist id="cars">
<option value="宝马">
<option value="福特">
<option value="沃尔沃">
</datalist>
</body>
</html>
min 和 max 属性
min 和 max 属性规定 <input> 元素的最小值和最大值。
min 和 max 属性适用于如需输入类型:number、range、date、datetime、datetime-local、month、time 以及 week。
具有最小和最大值的 <input> 元素:
<!DOCTYPE HTML>
<html>
<body>
<form action="/example/html5/html5_form.aspx" method="get">
Points: <input type="number" name="points" min="0" max="10" />
<input type="submit" value="提交" />
</form>
</body>
</html>
multiple 属性
multiple
属性是布尔属性。
如果设置,则规定允许用户在 <input> 元素中输入一个以上的值。
multiple
属性适用于以下输入类型:email 和 file。
接受多个值的文件上传字段:
<!DOCTYPE HTML>
<html>
<body>
<form action="/example/html5/html5_form.aspx" method="get">
选择图片:<input type="file" name="img" multiple="multiple" />
<input type="submit" value="提交" />
</form>
<p>请尝试在浏览文件时选取一个以上的文件。</p>
</body>
</html>
pattern 属性
pattern
属性规定用于检查 <input> 元素值的正则表达式。
pattern
属性适用于以下输入类型:text、search、url、tel、email、and password。
提示:请使用全局的 title 属性对模式进行描述以帮助用户。
提示:请在我们的 JavaScript 教程中学习更多有关正则表达式的知识。
只能包含三个字母的输入字段(无数字或特殊字符):
<!DOCTYPE HTML>
<html>
<body>
<form action="/example/html5/html5_form.aspx" method="get">
国家代码:<input type="text" name="country_code" pattern="[A-z]{3}"
title="三个字母的国家代码" />
<input type="submit" value="提交" />
</form>
</body>
</html>
placeholder 属性
placeholder
属性规定用以描述输入字段预期值的提示(样本值或有关格式的简短描述)。
该提示会在用户输入值之前显示在输入字段中。
placeholder
属性适用于以下输入类型:text、search、url、tel、email 以及 password。
拥有占位符文本的输入字段:
<!DOCTYPE HTML>
<html>
<body>
<form action="/example/html5/html5_form.aspx" method="get">
<input type="search" name="user_search" placeholder="Search" />
<input type="submit" value="提交" />
</form>
</body>
</html>
required 属性
required
属性是布尔属性。
如果设置,则规定在提交表单之前必须填写输入字段。
required
属性适用于以下输入类型:text、search、url、tel、email、password、date pickers、number、checkbox、radio、and file.
必填的输入字段:
<!DOCTYPE HTML>
<html>
<body>
<form action="/example/html5/html5_form.aspx" method="get">
名称: <input type="text" name="usr_name" required="required" />
<input type="submit" value="提交" />
</form>
</body>
</html>
step 属性
step
属性规定 <input> 元素的合法数字间隔。
示例:如果 step="3",则合法数字应该是 -3、0、3、6、等等。
提示:step
属性可与 max 以及 min 属性一同使用,来创建合法值的范围。
step
属性适用于以下输入类型:number、range、date、datetime、datetime-local、month、time 以及 week。
拥有具体的合法数字间隔的输入字段:
<!DOCTYPE HTML>
<html>
<body>
<form action="/example/html5/html5_form.aspx" method="get">
<input type="number" name="points" step="3" />
<input type="submit" value="提交" />
</form>
</body>
</html>