`caption`标签 为表格添加标题和摘要 **摘要** 摘要的内容是不会在浏览器中显示出来的。它的作用是增加表格的可读性(语义化),使搜索引擎更好的读懂表格内容,还可以使屏幕阅读器更好的帮助特殊用户读取表格内容。 语法: ```html 标题文本 … … … … ``` 代码示例: ```html 认识table表标签 2012年到2013年库存量 产品名称 品牌 库存量(个) 入库时间 耳机 联想 500 2013-1-2 U盘 金士顿 120 2013-8-10 U盘 爱国者 133 2013-3-25 ``` 版权属于:编码书生本文链接:https://codess.cc/archives/301.html所有原创文章采用知识共享署名-非商业性使用 4.0 国际许可协议进行许可。 除特别注明,您可以自由的转载和修改,但请务必注明文章来源且不可用于商业目的。 最后修改:2019 年 09 月 18 日 © 允许规范转载 打赏 赞赏作者 支付宝微信 赞 0 您的支持就是我持续更新的动力! 下一篇 上一篇 发表评论 取消回复 说点什么吧...... 评论 * 名称 * 🎲 邮箱 * 地址 发表评论 提交中... HTML笔记:为表格添加标题和摘要 Sakwe • 2018 年 09 月 04 日 <div id="md_content_2" class="md_content" style="min-height: 50px;"><textarea id="append-test" style="display:none;">`caption`标签 为表格添加标题和摘要 **摘要** 摘要的内容是不会在浏览器中显示出来的。它的作用是增加表格的可读性(语义化),使搜索引擎更好的读懂表格内容,还可以使屏幕阅读器更好的帮助特殊用户读取表格内容。 语法: ```html <table summary = "关于表格的接收文本"> <table> <caption>标题文本</caption> <tr> <td>…</td> <td>…</td> … </tr> … </table> ``` 代码示例: ```html <!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>认识table表标签</title> <style type="text/css"> table tr td,th{ border:1px solid #000; } </style> </head> <body> <table summary = "本表格记录2012年到2013年库存记录,记录包括U盘和耳机库存量"> <caption>2012年到2013年库存量</caption> <tr> <th>产品名称 </th> <th>品牌 </th> <th>库存量(个) </th> <th>入库时间 </th> </tr> <tr> <td>耳机 </td> <td>联想 </td> <td>500</td> <td>2013-1-2</td> </tr> <tr> <td>U盘 </td> <td>金士顿 </td> <td>120</td> <td>2013-8-10</td> </tr> <tr> <td>U盘 </td> <td>爱国者 </td> <td>133</td> <td>2013-3-25</td> </tr> </table> </body> </html> ``` </textarea></div><hr class="content-copyright" /><blockquote class="content-copyright"><p class="content-copyright">版权属于:编码书生</p><p class="content-copyright">本文链接:<a class="content-copyright" href="https://codess.cc/archives/301.html">https://codess.cc/archives/301.html</a></p><p class="content-copyright"><p>所有原创文章采用<a href="https://creativecommons.org/licenses/by-nc/4.0/deed.zh" target="_blank">知识共享署名-非商业性使用 4.0 国际许可协议</a>进行许可。<br> <strong>除特别注明</strong>,您可以自由的转载和修改,但请务必注明文章来源且不可用于商业目的。</p> </p></blockquote> 文章目录