Blogger Information
Blog 16
fans 0
comment 0
visits 12102
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
HTML表单和常用属性
大碗宽面
Original
383 people have browsed it

form表单常用类型

类型 描述 示例
text 文本框
password 暗文文本框
email 有验证的邮箱表单
number 数字文本框,只能输入数字
date 年月日的数字滚轮
radio 单选框
checkbox 复选框
image 图形化 submit 按钮

下拉列表

select元素用来创建下拉列表

  • value="0"requireddisabled>--请选择--
  • value="1">
  • value="2">
  • value="3">Rap
  • value="4"selected>篮球
  • form表单常用属性

    类型 描述 示例
    name 控件名称,作为键值对的一部分与表单一同提交 name="password"
    value 控件的初始值 value="18"
    max 最大值 max="2023-03-13"
    min 最小值 min="1997-05-08"
    maxlength value的最小长度(字符数) maxlength="18"
    minlength value的最小长度(字符数) minlength="18"
    size 控件的尺寸 size="18"
    selected 预先选定该选项。 selected
    placeholder 出现在控件上的文字 placeholder="请填写用户名"
    chenked 控件是否选中 chenked
    required 布尔值。如果存在,这个值是必需的 required
    disabled 布尔值。表单控件是否禁用 disabled

    ps

    radio单选按钮允许在多个拥有相同name值的选项中选中其中一个。

           
    1. for="sex">性别:
    2. type="radio"name="gender"value="sex"id="sex"/>
    3. type="radio"name="gender"value="sex"id="sex"/>
    4. type="radio"checkedname="secrecy"value="sex"id="sex"/>保密

    checkbox复选框需要返回多个值,需要在name属性中加[]。

           
    1. for="hobby">爱好:
    2. for="hobby">type="checkbox"value="hobby"name="hobby[]"id="hobby"/>
    3. for="hobby">type="checkbox"value="hobby"name="hobby[]"id="hobby"/>
    4. for="hobby">type="checkbox"value="hobby"name="hobby[]"id="hobby"/>Rap
    5. for="hobby">checkedtype="checkbox"value="hobby"name="hobby[]"id="hobby"/>篮球

    用户注册表实例

           
    1. lang="zh-CN">
    2. charset="UTF-8"/>
    3. http-equiv="X-UA-Compatible"content="IE=edge"/>
    4. name="viewport"content="width=device-width, initial-scale=1.0"/>
    5. </span><span class="pln">Document</span><span class="tag">
    6. action="0313.php"method="post">
    7. style="text-align:center">用户注册
    8. for="usname">账户:
    9. type="text"placeholder="不少于6位数"name="usname"id="usname"maxlength="12"/>
  • for="password">密码:
  • type="password"placeholder="输入密码"name="password"id="password"minlength="8"/>
  • for="email">邮箱:
  • type="email"placeholder="注意邮箱格式@"name="email"id="email"/>
  • for="age">年龄:
  • type="number"name="age"id="age"value="18"min="18"max="20">
  • for="birthday">
  • type="date"name="birthday"id="birthday"value="1997-05-08"min="1997-05-08"max="2023-03-13">
  • for="sex">性别:
  • type="radio"name="gender"value="sex"id="sex"/>
  • type="radio"name="gender"value="sex"id="sex"/>
  • type="radio"checkedname="secrecy"value="sex"id="sex"/>保密
  • for="hobby">爱好:
  • for="hobby">type="checkbox"value="hobby"name="hobby[]"id="hobby"/>
  • for="hobby">type="checkbox"value="hobby"name="hobby[]"id="hobby"/>
  • for="hobby">type="checkbox"value="hobby"name="hobby[]"id="hobby"/>Rap
  • for="hobby">checkedtype="checkbox"value="hobby"name="hobby[]"id="hobby"/>篮球
  • for="">个人简介:

  • name=""id=""cols="30"rows="7"placeholder="老师好,我是练习时长两年半的个人练习生ikun。喜欢唱、跳、rap、篮球。">
  • for="picture">
  • type="image"src="./0313image/1.png"alt="同意"width="220px"id="picture"onclick="alert('密码输入正确')">
  • type="reset"value="重置">
  • Correcting teacher:PHPzPHPz

    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 withNews 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!