HTML表单是一个包含各种表单元素的区域,用于收集用户提交的各种类型的的数据。
表单使用<from>来设置
<from>的常用属性
action :表单提交的地址
method :提交表单的方法,有get和post两种。
常用的表单元素
常用表单元素属性:
type: 输入类型
name: 表单名称
value: 表单的默认值
文本域(Text Fields)
文本域通过<input type="text"> 标签来设定,当用户要在表单中键入用户名、邮箱等少量内容时,就会用到文本域。
<label>标签用于对<input>的注释,通常配合for属性使用。与id属性相对应。
例如
<form action="/getInfo" method="get">
<label for="username">姓名</label>
<input id="username" type="text" name="username" value="ruo">
</form>
密码字段
通过标签**<input type="password"> **来定义:
<form action="/getInfo" method="get">
<label for="password">密码</label>
<input id="password" type="password" name="password" placeholder="输入密码">
</form>
单选框(Radio buttons)
通过标签<input type="radio"> 定义。
<form action="/getInfo" method="get">
<input type="radio" name="sex" value="男"> 男
<input type="radio" name="sex" value="女"> 女
</form>
复选框(Checkboxes)
通过标签**<input type="checkbox"> **定义。
例如
<form action="/getInfo" method="get">
<input type="checkbox" name="hobby" value="read"> 读书
<input type="checkbox" name="hobby" value="music"> 听歌
<input type="checkbox" name="hobby" value="study"> 学习
</form>
提交按钮(Submit Button)
通过<input type="submit"> 定义
当用户点击提交按钮时,表单的内容会被传送。传送的方式和目的地由<form>标签定义。
例如
<form action="/getInfo" method="get">
<input type="submit" value="Submit" /> 提交
</form>
重置按钮(Reset)
通过<input type="reset">定义
点击按钮时,清空填写的表单数据。
<form action="/getInfo" method="get">
<input type=reset"">
<form action="/getInfo" method="get">