Blogger Information
Blog 7
fans 0
comment 0
visits 9449
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
HTML基础元素之 a标签,列表标签,table标签,form标签属性与使用心得
鼠莱鼠去
Original
3547 people have browsed it

链接元素a标签

<a> 标签定义文本超链接,用于从一个页面链接到另一个页面。

<a> 标签常用属性

href属性值

href="url":跳转的目标地址

href="mailto: 123@qq.com":打开邮箱,往“123@qq.com”发送邮件

href="tel:13388**2345" :点击后,会询问用户是否要拨打电话

href="test.doc":浏览器不能解析此文档,会直接下载此文档

taget属性值

taget规定在何处打开目标 URL。且仅在 href 属性存在时使用。

属性 描述
target="__self" 当前窗口打开链接
target="_blank" 新窗口打开链接
target="_parent" 父窗口打开链接
target="_top" 顶层窗口打开链接
target="name" 指定名称的窗口, 与<iframe>元素配合
target="#anchor" 跳转到设置了锚点的元素所在位置

<a> 标签示例

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>HTMLa标签示例</title>
  7. </head>
  8. <body>
  9. <!-- 默认在当前窗口打开_self, 现自定义为新窗口打开_blank "_self", "_blank" 一般为链接打开常用方式 -->
  10. <a href="https://www.php.cn/blog/detail/20112.html" target="_blank">HTML5 文档结构与属性总结</a><br>
  11. <!-- 浏览器不能直接解析markdown文档,所以会自动下载,下载的文件名可由download属性自定义 -->
  12. <a href="2-html基础知识.md" download="HTML教案.md">html教程</a><br>
  13. <!-- 拔打电话,会调用默认通信工具 -->
  14. <a href="tel:15788*****33">咨询热线</a><br>
  15. <!-- 向“1234@qq.com”邮箱发送邮件,会调用本机电邮软件 -->
  16. <a href="mailto: 1234@qq.com">联系我们</a><br>
  17. <a href="#anchor">跳转到当前面中的锚点</a>
  18. <h1 id="anchor" style="margin-top:500px;">我是锚点</h1>
  19. </body>
  20. </html>

效果图如下:

列表标签

列表的基本概念

列表(List),就是在网页中将相关资料以条目的形式有序或者无序排列而形成的表。常用的列表有无序列表、有序列表和定义列表三种。

列表元素 描述
<ul> + <li> 无序列表
<ol> + <li> 有序列表
<dl> + <dt> + <dd> 自定义列表
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>HTML列表标签示例</title>
  7. </head>
  8. <body>
  9. <h3>无序列表-今天想吃的</h3>
  10. <!-- 作为一个吃货,水果不能少呢,排名不分先后,顺序无关紧要。 -->
  11. <ul>
  12. <li>阿克苏苹果</li>
  13. <li>库尔勒香梨</li>
  14. <li>红香妃</li>
  15. <li>绿香妃</li>
  16. <li>杏干</li>
  17. </ul>
  18. <hr />
  19. <h3>有序列表-今天的任务</h3>
  20. <!-- 作为一个爱学习的好孩子,任务的完成的顺序非常重要。 -->
  21. <ol>
  22. <li>HTML5基础课第二节复习</li>
  23. <li>HTML5基础课第二节课后作业</li>
  24. <li>表单元素内容预习</li>
  25. <li>准备上课</li>
  26. </ol>
  27. <hr />
  28. <h3>自定义列表</h3>
  29. <dl>
  30. <dt>html</dt>
  31. <dd>超文本标记语言</dd>
  32. <dt>css</dt>
  33. <dd>层叠样式表</dd>
  34. <dt>JavaScript</dt>
  35. <dd>前端通用脚本语言</dd>
  36. </dl>
  37. </body>
  38. </html>

效果图如下:

table标签

表格元素

  • 表格是最重要的数据格式化展示重要工具, 使用频率非常高
  • 表格的数据,存储在由行与列组成的一系列单元格
  • 数据必须存储在单元格元素中
  • 与列表类似, 表格也是由一系列标签来描述
序号 标签 描述 备注
1 <table> 定义表格, 必选
2 <tbody> 定义表格主体, 允许定义多次 必选
3 <tr> 定义表格中的行, 必选
4 <th> 定义表格头部中的单元格,默认加粗居中 必选
5 <td> 定义 g 表格 e 主体与底部的的单元格 必选
6 <caption> 定义表格标题, 可选
7 <thead> 定义表格头格, 只需定义一次 可选
8 <tfoot> 定义表格底, 只需定义一次 可选
9 <col> 为一个/多个列设置属性,仅限 可选
10 <colgroup> 将多个<col>元素分组管理 可选

表格属性

序号 属性 适用元素 描述
1 border <table> 添加表格框
2 cellpadding <table> 设置单元格内边距
3 cellspacing <table> 设置单元格边框间隙
4 align 不限 设置单元格内容水平居中
5 bgcolor 不限 设置背景色
6 width 不限 设置宽度
7 height 不限 设置高度

表格属性仅供参考,默认推荐使用 CSS 设置表格样式

表格示例

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>HTML表格标签table示例</title>
  7. </head>
  8. <body>
  9. <table height="300" cellspacing="1" bgcolor="#000" >
  10. <!-- 表格属性仅供测试效果参考,正式环境下推荐用CSS统一测试 -->
  11. <!-- 表格标题 -->
  12. <caption bgcolor="#fff">课程表</caption>
  13. <!-- 表格页眉 -->
  14. <thead bgcolor="#fff">
  15. <tr><th colspan="2"></th>
  16. <th>星期一</th>
  17. <th>星期二</th>
  18. <th>星期三</th>
  19. <th>星期四</th>
  20. <th>星期五</th>
  21. </tr>
  22. </thead>
  23. <!-- 表格主体 -->
  24. <tbody bgcolor="#fff">
  25. <tr>
  26. <td rowspan="2" width="30">上午</td>
  27. <td width="30">1</td>
  28. <td>语文</td>
  29. <td>数学</td>
  30. <td>物理</td>
  31. <td>化学</td>
  32. <td>生物</td>
  33. </tr>
  34. <tr>
  35. <td>2</td>
  36. <td>体育</td>
  37. <td>画画</td>
  38. <td>舞蹈</td>
  39. <td>音乐</td>
  40. <td>数学</td>
  41. </tr>
  42. <tr>
  43. <td rowspan="2">下午</td>
  44. <td>1</td>
  45. <td>体育</td>
  46. <td>画画</td>
  47. <td>舞蹈</td>
  48. <td>语文</td>
  49. <td>音乐</td>
  50. </tr>
  51. <tr>
  52. <td>2</td>
  53. <td>英语</td>
  54. <td>数学</td>
  55. <td>体育</td>
  56. <td>生物</td>
  57. <td>化学</td>
  58. </tr>
  59. </tbody>
  60. <!-- 表格页脚 -->
  61. <tfoot>
  62. <tr bgcolor="white">
  63. <td align="center">备注:</td>
  64. <td colspan="6">表格属性仅供测试效果参考,正式环境下推荐用CSS统一配置</td>
  65. </tr>
  66. </tfoot>
  67. </table>
  68. </body>
  69. </html>

效果图如下:

表单与控件元素

  • 表单分为表单元素与控件元素二部分
  • 表单元素仅一个: <form>
  • 表单控件元素,根据类型不同,有多个

表单元素<form>

常用属性

序号 属性 描述
1 action 表单提交的 URL 地址(处理表单请求的脚本)
2 method 表单提交类型:GET/POST
3 enctype 设置表单提交数据的编码方式
4 name 表单唯一名称,与 ID 同义
5 target 打开请求 URL 的方式,如果_blank

请求类型method

  • web 请求方式有二种: 超链接与表单提交
  • 超链接就是使用<a>标签发起请求,其实就是GET请求
  • 表单提交默认就是GET请求,但例用最多的是POST
  • 请求类型属性action的取值
序号 允许值 描述
1 GET 默认值,表单数据以请求参数形式通过 URL 提交, 数据量最大 2K
2 POST 表单数据放在请求体中发送,数据量更大也更安全

编码方式enctype

序号 允许值 适用场景 描述
1 application/x-www-form-urlencoded 接收value 默认值,使用 URL 编码,GET/POST 均适合
2 multipart/form-data 文件上传 采用二进制流处理,会把文件域中的内容封装到请求参数中,适合
3 text/plain 电子邮件 action="mailto:URL

表单名称name

序号 功能 描述
1 标识表单元素 id一样,用来唯一标识该表单元素
2 绑定表单元素 用于表单控件元素的 form 属性,用来绑定所属表单
3 访问表单元素 快捷访问内部控件元素,如form.input.value

打开方式target

序号 允许值 描述
1 _self 默认值,当前窗口打开提交的 URL
2 _blank 新窗口打开提交的 URL
3 _parent 父窗口打开提交的 URL
4 _top 顶层窗口打开提交的 URL

表单控件元素<input>

常用属性

序号 属性 描述
1 type 控件类型,如文本框, 复选框…
2 name 请求参数的名称,对应于脚本处理的变量名
3 value 请求参数的值,对应于脚本处理的变量值,使用预定义值控件无效
4 form 控件所属表单
5 placeholder 仅限输入框textpassword,输入框的提示信息
6 list 仅限输入框textpassword,下拉框智能提示
7 autocomplate 仅限输入框textpassword,自动完成(历史记录)
8 maxlength 仅限输入框text/password, 允许输入最大字符数量
9 checked 仅限单选框radio, 复选框checkbox(布尔属性)
10 readonly 元素只读,但通过 JavaScript 可修改(布尔属性)
11 disabled 元素禁用,(布尔属性)
12 autofocus 自动获取焦点,一个表单仅限一个控件
13 src 仅限图像域images, 图像 URL 地址
14 width 仅限图像域images, 图像宽度
15 height 仅限图像域images, 图像高度

type类型

  • 常用类型
序号 类型 描述
1 <input type="text"> 单行文本框 (默认值)
2 <input type="password"> 密码输入框
3 <input type="radio"> 单选框
4 <input type="checkbox"> 复选框
5 <input type="image"> 图像域/提交表单
6 <input type="file"> 文件上传域
7 <input type="hidden"> 隐藏域
  • html5 新增类型
序号 类型 描述
1 <input type="email"> 电子邮件
2 <input type="data"> 日期
2 <input type="data"> 日期
4 <input type="datetime-local"> 本地日期时间
5 <input type="tel"> 电话号码
6 <input type="url"> URL 地址
7 <input type="number"> 数值
8 <input type="range"> 范围拖动条
9 <input type="search"> 搜索框/移动
10 <input type="color"> 拾色器

常用事件属性

序号 事件属性 描述
1 onfocus 获取焦点时触发
2 onblur 失去焦点时触发
3 onchange 失去焦点,且值发生变化时触发
4 oninput 值发生变化(不等失去焦点)时触发
5 onkeydown 按下键盘时触发
6 onkeyup 抬起键盘时触发
7 onclick 鼠标单击时触发
8 onselect 选择内容文本时触发

控件标签元素<label>

  • <label>元素没有namevalue属性,不会创建请求参数
  • 它存在的意义就是关联控件,当点击它时将焦点自动落在关联控件内部
  • 语法: <label for="关联控件的id属性值">(也支持三大通用属性)
  • <label>有二种方式与控件元素进行关联/绑定
序号 关联方式 示例代码
1 显式关联 <label for="email">Email:</label><input type="email" id="email">
1 隐式关联 <label>Email:</label><input type="email"></label>

推荐使用显式关联, 案例参考<input>示例

表单示例

  1. <!DOCTYPE>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>表单示例</title>
  7. <style>
  8. form {
  9. padding: 20px;
  10. width: 350px;
  11. box-shadow: 0 0 8px #888;
  12. border-radius: 10px;
  13. box-sizing: border-box;
  14. margin: auto;
  15. background-color: lightskyblue;
  16. display: grid;
  17. gap: 15px;
  18. }
  19. form > section {
  20. display: grid;
  21. grid-template-columns: 80px 1fr;
  22. }
  23. h3 {
  24. text-align: center;
  25. }
  26. input[type="image"] {
  27. justify-self: center;
  28. }
  29. </style>
  30. </head>
  31. <body>
  32. <h3>用户注册</h3>
  33. <form action="">
  34. <section>
  35. <label for="username">用户名:</label>
  36. <input type="text" id="username" name="username" placeholder="请输入您的用户名" />
  37. </section>
  38. <section>
  39. <label for="password">密码:</label>
  40. <input type="password" id="password" name="password" placeholder="请输入密码" />
  41. </section>
  42. <!-- 单选框 -->
  43. <section>
  44. <label for="secret">性别:</label>
  45. <div>
  46. <!-- 只允许返回一个值,多个input的name属性值必须相同 -->
  47. <input type="radio" name="gender" id="male" value="male" /><label for="male"></label>
  48. <input type="radio" name="gender" id="female" value="female" /><label for="male"></label>
  49. <!-- checked: 默认选项 -->
  50. <input type="radio" name="gender" id="secret" value="female" checked /><label for="secret">保密</label>
  51. </div>
  52. </section>
  53. <input type="image" src="btn.png" alt="提交注册" name="submit" width="100"/>
  54. </form>
  55. </body>
  56. </html>

效果图如下:

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