01、
表单

表单是比较重要的HTML元素,块元素,主要作用是向服务端提交数据。结合表单元素input使用,通过内部的button按钮提交(type=”submit”)表单数据。

元素/属性 描述 值/备注
表单元素
action 提交表单的目标(服务端)地址url
method 提交数据的方式,就是数据传输的方式
- get:通过URL提交数据[url]?uname=1&age=2
- post,通过HTTP表单数据提交,键值格式。
target 提交数据时打开action url的方式 _self:当前窗口(默认值);_blank:新窗口
enctype 编码类型(encode type),规定了form表单在发送到服务器时候编码方式,不常用。
- application/x-www-form-urlencoded。编码所有字符(默认)
- multipart/form-data 。混合类型, 表单中有文件上传时使用
- text/plain。纯文体,空格转换为 “+” 加号,不对特殊字符编码
submit() 提交表单数据,通过js代码调用
表单分组,默认样式:一个框 便于表单样式管理的语义化元素
form from的id,当
不在form中时
disabled 整个分组都不可用
作为
的标题,显示在框上
legend /ˈledʒənd/ 铭文、图例



  1. <style>
  2. #form fieldset {
  3. border: 1px solid skyblue;
  4. padding: 20px 10px;
  5. border-radius: 5px;
  6. text-align: center;
  7. margin: 10px 0px;
  8. }
  9. #form fieldset legend {
  10. font-size: 1em;
  11. border: 1px solid rgb(236, 175, 43);
  12. border-radius: 1em;
  13. padding: 3px 15px;
  14. }
  15. </style>
  16. <form id="form" action="#" target="_self" method="post">
  17. <fieldset>
  18. <legend>登录</legend>
  19. <input type="text" name="uname" placeholder="请输入用户名" required maxlength="36">
  20. <input type="password" name="upwd" required maxlength="12" placeholder="输入密码">
  21. <input type="submit" value="submit-登录">
  22. </fieldset>
  23. </form>

image.png :::warning 📢注意:提交数据时参数名为表单元素的name,因此表单控件须设置name属性。 :::

❓get、post区别:


GET POST
提交方式 参数在url的问号?后:url?key=value@key=... 参数在请求体中
编码enctype 只有appliacation-x-www-form-urlencoded 支持多种
书签/历史 可以加入收藏,历史记录、日志会保留数据 不可收藏、不会保留数据
缓存/效率 可以被浏览器缓存,效率(速度)更高 不可缓存
数据类型/长度 只允许 ASCII 字符,URL长度有限制(2048),不同浏览器不同。 类型没有限制,支持二进制数据。长度(几乎)无限制
安全性 安全性更低,数据在URL中容易暴露 安全性稍高,不过传输过程也是明文的,不会在浏览记录、日志中存储
回退/刷新? 无副作用(幂等),可重复访问 有副作用,数据会被重新提交(不幂等),浏览器一般会提示用户数据会被重新提交
使用场景 获取数据 提交数据:添加、修改、删除

:::warning 📢因此

  • 数据有安全性要求的时候,建议用POST并且加密(HTTPS)。
  • 获取数据(如查询)的的时候,一般用GET;提交数据(添加、修改、删除)时一般用POST。 :::

02、表单元素

表单元素单标签行内元素,主要用于输入各种类型数据。包含多个控件类型type:文本框、复选框、单选框、按钮等。put-type

input-type

input-type/专有属性 描述 备注
text 文本输入框(默认),单行文本,不支持换行 <input type="text">
password 密码输入框
radio 单选框,相同name为一组互斥 记得赋值value
checkbox 多选框,相同name为一组。如选中多个值会提交多个key-value 记得赋值value
number 数字输入,step设置步长
hidden 隐藏框/域,页面不可见,用于一些逻辑处理
button 普通按钮,按钮显示value值,结合JavaScript、事件使用
<inputtype="button" value="提交" onclick="">
建议用
submit 表单提交按钮,在form中有效,直接提交表单数据 <button>元素的submit模式
reset 表单重置按钮,重置表单的数据,form中有效。
image 图片提交按钮,同submit,**src**设置图片,无图则显示alt height、width设置图片大小
file 文件选择框,如多值则value为第一个值,js获取files取多个值 capture媒体拍摄方式-移动端
accept 可接受文件类型,多个逗号隔开,image/png, video/* .jpg,.png,.doc
email 电子邮箱,支持邮箱格式验证 验证邮箱格式
range 滑块数字,用 min 和 max 来设置值的范围,step设置步长 list可设置刻度
search 搜索框,和text差不多
tel 电话号码,和text差不多,有些终端支持虚拟键盘 不验证(不同地区格式不同)
url URL地址,和text差不多 验证url格式
colorIE🚫 颜色输入控件
dateIE🚫 日期输入,年月日
datetime-localIE🚫 日期时间输入,年月日、时分秒,Chrome/Opera /Edge支持 yyyy-MM-ddThh:mm
monthIE🚫 年月输入,输入年份或月份 value="2018-05"
timeIE🚫 时间控件,小时、分
weekIE🚫 年和周数,用于输入以年和周数组成的日期,支持的不多 image.png

:::warning 📢注意

  • 一般浏览器对不支持的type,都默认降级为text
  • 文件选择框如通过表单提交,表单需设置属性enctype="multipart/form-data"设置表单数据编码为多种数据组合,同时设置提交方式为post,才可以上传文件(二进制)。 :::

    支持的常规属性

    | 基础属性 | 描述 | 相关type | 值/备注 | | —- | —- | —- | —- | | name | 控件名称(通用属性),表单中须赋值,会作为参数名 | | | | type | 表单控件类型 |
    | 详见上表 | | value | 的值,可设置默认值。 | | | | tabindex | 当前文档的 Tab 导航顺序中的位置 | |
    | | size | 宽度,文本框可显示的字符宽度,同css的width | | 字符数量 | | min/maxlength | 可输入字符数量,文本框可输入最少/大字符数量 | 文本输入类 | | | readonly | 只读,不可编辑,IE有光标显示 | | true值可省略 | | disabled | 不可用,无光标 | | 值可省略 | | placeholder | 占位符/水印,用于输入提示,比较常用 | 文本输入类 |
    | | checked | 选中状态 | 单选、多选 | 值可省略 | | min/max | 最大/小值,数字、日期值的边界 | 数字、日期 | 大小边界验证 | | patternIE10 | 模式(正则表达式),用于值的合法性检测 | 文本输入类 | 正则验证 | | required | 必填,hidden、image 或者按钮类型无效 | | 值可省略,必填验证 | | multiple | 是否允许多个值,逗号隔开 | email、file | 布尔值,值可省略 | | step | 步长,数字、日期 | 数字、日期 |
    | | list | 候选值:输入框的候选值列表,值,显示value | 大多数 | | | autocomplete | 自动填充,设置浏览器的自动填充模式 | 大多数 |
    | | autofocus | 页面加载时自动聚焦 | | 布尔值,值可省略 | | inputmode | 值输入模式,虚拟键盘,text, tel, url, email, numeric | 文本输入类 |
    | | form | 所属form,值为其id | |
    | | formaction | 表单提交属性,还有formenctype、formmethod、formnovalidate、formtarget | image、submit |
    |
  1. <style>
  2. .iform {
  3. text-align: right;
  4. display: grid;
  5. grid-template-columns: 80px 200px 80px 200px;
  6. gap: 10px 5px;
  7. }
  8. /* 重写radio的样式 */
  9. .iform input[type="radio"] {
  10. -webkit-appearance: none;
  11. -moz-appearance: none;
  12. appearance: none;
  13. border-radius: 50%;
  14. width: 20px;
  15. height: 20px;
  16. border: 3px solid #999;
  17. transition: 0.2s all linear;
  18. outline: none;
  19. position: relative;
  20. }
  21. .iform input[type="radio"]:checked {
  22. border: 6px solid #4A80FF;
  23. }
  24. .iform input:invalid {
  25. border-color: red;
  26. }
  27. .iform input,.iform label {
  28. height: 26px;
  29. padding: 0 3px;
  30. display: inline-block;
  31. vertical-align: middle;
  32. }
  33. </style>
  34. <form class="iform">
  35. text:<input type="text" autocomplete="on" required placeholder="username" autofocus>
  36. password:<input type="password" required maxlength="12" minlength="6">
  37. number:<input type="number" step="12" min="1" value="33" >
  38. radio:<div style="text-align:left;">
  39. <label><input type="radio" name="sex" checked></label>
  40. <label><input type="radio" name="sex"></label></div>
  41. checkbox:<div style="text-align:left;">
  42. <label><input type="checkbox" name="cbgroup">做饭</label>
  43. <label><input type="checkbox" name="cbgroup">打球</label></div>
  44. <input type="hidden" value="key123">
  45. file:<input type="file" accept="image/*">
  46. email:<input type="email" inputmode="email" pattern=".+@163.com" placeholder="***@163.com">
  47. range:<input type="range" min="0" max="100" value="10" step="5">
  48. search:<input type="search" list="slist">
  49. tel:<input type="tel" pattern="[0-9]*" maxlength="14">
  50. url:<input type="url" placeholder="http://example.com">
  51. color:<input type="color" value="#ff0000" >
  52. datetime-local<input type="datetime-local">
  53. month:<input type="month" step="1">
  54. time:<input type="time" value="12:12">
  55. week:<input type="week" value="12:12" required>
  56. <input type="reset" value="reset重置">
  57. <input type="button" value="普通按钮">
  58. <input type="image" src="../res/btnb.png" width="60px">
  59. <input type="submit" value="submit提交">
  60. </form>

image.png

数据集合

数据集合元素,包含了一组

  • 文本、数字输入的候选值,包括text、number、email、url、tel、search等。
  • range的刻度。
    1. <datalist id="optfruit">
    2. <option value="香蕉">香蕉</option>
    3. <option value="火龙果">火龙果</option>
    4. <option value="绿色蔬菜">冬瓜</option>
    5. <option value="男瓜">
    6. <option value="其他">
    7. </datalist>
    8. <input type="search" list="optfruit">
    image.png

03、