Blogger Information
Blog 10
fans 0
comment 0
visits 8199
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
表单和常用控件作业
骨头
Original
810 people have browsed it

表单


<form> 常用属性的列表:

属性 描述
action 提交表单的地址(url)
method 提交表单时所用的类型
name 识别表单的名称

表单常用属性

属性 描述
type 控件类型
button 提交按钮
name 参数的名称
value 参数的值
placeholder 输入框的提示信息
checked 在单选框下默认选择
autofocus 自动获取焦点,一个表单只能允许存在一个
required 提交表单之前必须填写输入字段

type常用类型

  • <input> 元素是最常用的表单元素
    • 它可以根据type属性定义多种形态
  1. 定义文本输入
    <input type="text">
  2. 定义密码框输入
    <input type="password">
  3. 定义单选框
    <input type="radio">
  4. 定义复选框
    <input type="checkbox">
  5. 定义电子邮件框
    <input type="email">
  6. 下拉框
    <select> <option>..</option> </select>
  7. 按钮
    <button>提交</button>

案例:

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