Blogger Information
Blog 7
fans 0
comment 0
visits 5836
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
button标签和inpute标签属性学习
董家大少
Original
1875 people have browsed it

button标签和inpute标签属性学习

button标签

button标签的属性与值、描述

属性 描述
autofocus autofocus 规定当页面加载时按钮应当自动地获得焦点。
disabled disabled 规定应该禁用该按钮。
form form_name 规定按钮属于一个或多个表单。
formaction url 覆盖 form 元素的 action 属性。注释:该属性与 type=”submit” 配合使用。
formenctype 见注释 覆盖 form 元素的 enctype 属性。注释:该属性与 type=”submit” 配合使用。
formmethod get、post 覆盖 form 元素的 method 属性。注释:该属性与 type=”submit” 配合使用。
formnovalidate formnovalidate 覆盖 form 元素的 novalidate 属性。注释:该属性与 type=”submit” 配合使用。
formtarget _blank、_self、_parent、_top framename覆盖 form 元素的 target 属性。注释:该属性与 type=”submit” 配合使用。
name button_name 规定按钮的名称。
type button、reset、submit 规定按钮的类型。
value text 规定按钮的初始值。可由脚本进行修改。

注释:formenctype 属性可能的值:
application/x-www-form-urlencoded
multipart/form-data
text/plain

inpute标签

inpute在功能上实际也能代替button标签

定义和用法

<input> 标签用于搜集用户信息。

根据不同的 type 属性值,输入字段拥有很多种形式。输入字段可以是文本字段、复选框、掩码后的文本控件、单选按钮、按钮等等。

HTML 与 XHTML 之间的差异

在 HTML 中,<input> 标签没有结束标签。

在 XHTML 中,<input> 标签必须被正确地关闭。

注意:请使用 label 元素为某个表单控件定义标签。

inpute标签的属性

属性 描述
accept mime_type 规定通过文件上传来提交的文件的类型。
align left、right、top、middle、bottom 不赞成使用。规定图像输入的对齐方式。
alt text 定义图像输入的替代文本。
autocomplete on、off 规定是否使用输入字段的自动完成功能。
autofocus autofocus 规定输入字段在页面加载时是否获得焦点。(不适用于 type=”hidden”)
checked checked 规定此 input 元素首次加载时应当被选中。
disabled disabled 当 input 元素加载时禁用此元素。
form formname 规定输入字段所属的一个或多个表单。
formaction URL 覆盖表单的 action 属性。(适用于 type=”submit” 和 type=”image”)
formenctype 见注释 覆盖表单的 enctype 属性。(适用于 type=”submit” 和 type=”image”)
formmethod get、post 覆盖表单的 method 属性。(适用于 type=”submit” 和 type=”image”)
formnovalidate formnovalidate 覆盖表单的 novalidate 属性。如果使用该属性,则提交表单时不进行验证。
formtarget _blank、_self、_parent、_top、framename 覆盖表单的 target 属性。(适用于 type=”submit” 和 type=”image”)
height pixels% 定义 input 字段的高度。(适用于 type=”image”)
list datalist-id 引用包含输入字段的预定义选项的 datalist 。
max number、date 规定输入字段的最大值。请与 “min” 属性配合使用,来创建合法值的范围。
maxlength number 规定输入字段中的字符的最大长度。
min number、date 规定输入字段的最小值。请与 “max” 属性配合使用,来创建合法值的范围。
multiple multiple 如果使用该属性,则允许一个以上的值。
name field_name 定义 input 元素的名称。
pattern regexp_pattern 规定输入字段的值的模式或格式。例如 pattern=”[0-9]” 表示输入值必须是 0 与 9 之间的数字。
placeholder text 规定帮助用户填写输入字段的提示。
readonly readonly 规定输入字段为只读。
required required 指示输入字段的值是必需的。
size number_of_char 定义输入字段的宽度。
src URL 定义以提交按钮形式显示的图像的 URL。
step number 规定输入字的的合法数字间隔。
type button、checkbox、file、hidden、image、password、radio、reset、submit、text 规定 input 元素的类型。
value value 规定 input 元素的值。
width pixels% 定义 input 字段的宽度。(适用于 type=”image”)

上课总结:

  • button对于form表单的提交可以分为post和get两种
  • input标签在写程序的时候最好用laber属性与其对应的文字选项绑定
  • inpute在写数据并且提交时,可以写在form表单之外,只要加上form属性即可,很实用也很方便。
Correcting teacher:天蓬老师天蓬老师

Correction status:qualified

Teacher's comments:每掌握一个属性,就多了一件武器
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!