当前位置:首页 > 文章列表 > 文章 > 前端 > HTML元信息设置技巧,网页头部标签实用指南

HTML元信息设置技巧,网页头部标签实用指南

2026-04-28 19:07:56 0浏览 收藏
本文深入解析HTML中``标签的正确设置方法与常见陷阱,涵盖字符集声明、视口配置、SEO描述优化、Open Graph及Twitter Card社交元数据的精准书写规范,并指出位置错误、属性混用、URL不合法、参数缺失等导致标签失效的核心原因;同时澄清keywords已无实际价值,强调description需真实简洁、社交图片须用绝对路径且尺寸合规,辅以官方调试工具实操建议,助开发者一次性写对关键元信息,避免乱码、SEO失效、分享异常等高频问题。

如何定义HTML文档的元信息_网页头部元标签的设定技巧【指南】

怎么写 才不被浏览器忽略

很多 标签写了但没效果,根本原因是位置或属性不合法。浏览器只在 内解析 ,且必须在 </code> 之前(尤其 <code>charset</code>);<code>http-equiv</code> 和 <code>name</code> 不能混用同一标签——比如写成 <code><meta http-equiv="description" name="description"></code> 就会被直接跳过。</p> <p>常见错误现象:<code>viewport</code> 不生效、中文乱码、SEO 描述未被爬虫抓取。</p> <ul><li><code><meta charset="UTF-8"></code> 必须是 <code><head></code> 中第一个标签(无条件)</li> <li><code><meta name="viewport" content="width=device-width, initial-scale=1"></code> 要紧随 <code><title></code> 或 <code><meta charset></code> 之后,否则 iOS Safari 可能忽略</li> <li><code>http-equiv</code> 类(如 <code>refresh</code>、<code>X-UA-Compatible</code>)本质是模拟 HTTP 响应头,仅对老 IE 或特定场景有效,现代浏览器基本不处理 <code>http-equiv="expires"</code> 这类</li> </ul><h3><code>name="description"</code> 和 <code>name="keywords"</code> 还有必要写吗</h3> <p>Google 官方明确表示不使用 <code>keywords</code>,Bing 也早已弃用;<code>description</code> 仍被搜索结果摘要采用,但前提是内容与页面主体强相关、长度控制在 155 字符内(超长会被截断),且不能堆砌关键词。</p> <p>使用场景:SEO 基础露出、社交分享卡片 fallback(当 Open Graph 缺失时)。</p> <ul><li>别复制正文第一段充数——搜索引擎会识别并降权</li> <li>避免用「网站名称 | 关键词1 | 关键词2」这种模板,语义断裂,点击率低</li> <li>动态页面建议服务端渲染真实描述,而不是所有页面共用同一段 <code><meta name="description"></code></li> </ul><h3>Open Graph 和 Twitter Card 元标签怎么配才不出错</h3> <p>社交平台分享时显示异常(图挂了、标题错乱、描述为空),90% 是因为 <code>og:</code> 或 <code>twitter:</code> 属性值缺失、路径错误或协议不匹配。</p> <p>关键参数差异:<code>og:image</code> 必须是绝对 URL(<code>https://</code> 开头),且图片尺寸建议 ≥ 1200×630px;<code>twitter:card</code> 必须设为 <code>summary_large_image</code> 才能展示大图,仅设 <code>summary</code> 会强制降级为小图+文字。</p> <ul><li><code>og:url</code> 应指向规范的 canonical 地址(带 trailing slash 或不带,需全站统一)</li> <li><code>og:type</code> 别乱填,<code>website</code> 和 <code>article</code> 行为差异很大(后者触发发布时间、作者等字段校验)</li> <li>调试用:<code>https://developers.facebook.com/tools/debug/</code> 和 <code>https://cards-dev.twitter.com/validator</code>,不是“保存就生效”,要主动抓取刷新</li> </ul><h3>哪些 <code><meta></code> 会影响首屏性能或兼容性</h3> <p><code><meta http-equiv="refresh"</code> 会强制跳转或重载,打断用户操作,且无法被 Chrome 93+ 的 <code>document.visibilityState</code> 拦截;<code><meta name="robots"</code> 设为 <code>noindex</code> 会让页面从搜索结果消失,但不会阻止爬虫抓取资源(JS/CSS 仍会加载)。</p> <p>移动端特别注意:<code><meta name="format-detection"</code> 在 iOS 上默认启用电话/邮箱自动识别,若页面有数字编号(如订单号 1800-123-4567),可能被误转为可点击电话链接。</p> <ul><li><code><meta http-equiv="X-UA-Compatible" content="IE=edge"></code> 对 IE11 以下有效,现代项目可安全删除</li> <li><code><meta name="apple-mobile-web-app-capable" content="yes"></code> 配合 <code>manifest.json</code> 使用才有意义,单独写只是个开关信号</li> <li>所有 <code><meta></code> 都不参与 CSSOM 构建,但过多冗余标签会略微增加 HTML 解析时间(微秒级,但审计工具会标红)</li> </ul><p>最容易被忽略的是:不同环境(开发/测试/生产)下 <code>og:url</code>、<code>canonical</code>、<code>robots</code> 的值必须动态切换,硬编码本地地址或测试域名会导致 SEO 泄露或索引混乱。</p><p>终于介绍完啦!小伙伴们,这篇关于《HTML元信息设置技巧,网页头部标签实用指南》的介绍应该让你收获多多了吧!欢迎大家收藏或分享给更多需要学习的朋友吧~golang学习网公众号也会发布文章相关知识,快来关注吧!</p> </div> <div class="labsList"> </div> <div class="cateBox"> <div class="cateItem"> <a href="/article/581212.html" title="Linux下播放SWF文件的技巧分享" class="img_box"> <img src="/uploads/20260428/177737442569f094d9b2758.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="Linux下播放SWF文件的技巧分享">Linux下播放SWF文件的技巧分享 </a> <dl> <dt class="lineOverflow"><a href="/article/581212.html" title="Linux下播放SWF文件的技巧分享" class="aBlack">上一篇<i></i></a></dt> <dd class="lineTwoOverflow">Linux下播放SWF文件的技巧分享</dd> </dl> </div> <div class="cateItem"> <a href="/article/581214.html" title="WPS文字提取技巧与使用方法" class="img_box"> <img src="/uploads/20260428/177737452669f0953e472a1.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="WPS文字提取技巧与使用方法"> </a> <dl> <dt class="lineOverflow"><a href="/article/581214.html" class="aBlack" title="WPS文字提取技巧与使用方法">下一篇<i></i></a></dt> <dd class="lineTwoOverflow">WPS文字提取技巧与使用方法</dd> </dl> </div> </div> </div> </div> <div class="leftContBox pt0"> <div class="pdl20"> <div class="contTit"> <a href="/articlelist.html" class="more" title="查看更多">查看更多<i class="iconfont"></i></a> <div class="tit">最新文章</div> </div> </div> <ul class="newArticleList"> <li> <div class="contBox"> <a href="/article/620659.html" class="img_box" title="前端页面发布后旧 JS 还在缓存:Cache-Control、文件指纹与回滚检查"> <img src="/uploads/20260809/1786222146-frontend-cache-layers.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="前端页面发布后旧 JS 还在缓存:Cache-Control、文件指纹与回滚检查"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/88_new_0_1.html" class="aLightGray" title="前端">前端</a>   |  1天前  |   </span> </dd> <dt class="lineOverflow"> <a href="/article/620659.html" class="aBlack" target="_blank" title="前端页面发布后旧 JS 还在缓存:Cache-Control、文件指纹与回滚检查">前端页面发布后旧 JS 还在缓存:Cache-Control、文件指纹与回滚检查</a> </dt> <dd class="cont2"> <span><i class="view"></i>267浏览</span> <span class="collectBtn user_collection" data-id="620659" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/620650.html" class="img_box" title="前端批量导入 CSV 如何避免页面假死:Web Worker、分片处理与结果通知"> <img src="/uploads/20260809/1786216438-csv-quality-notify.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="前端批量导入 CSV 如何避免页面假死:Web Worker、分片处理与结果通知"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/88_new_0_1.html" class="aLightGray" title="前端">前端</a>   |  1天前  |   <a href="/articletag/40157_new_0_1.html" class="aLightGray" title="[]">[]</a> · <a href="javascript:;" class="aLightGray" title="[]">[]</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/620650.html" class="aBlack" target="_blank" title="前端批量导入 CSV 如何避免页面假死:Web Worker、分片处理与结果通知">前端批量导入 CSV 如何避免页面假死:Web Worker、分片处理与结果通知</a> </dt> <dd class="cont2"> <span><i class="view"></i>441浏览</span> <span class="collectBtn user_collection" data-id="620650" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/620642.html" class="img_box" title="前端 BroadcastChannel 多标签页状态同步:消息去重、版本冲突与关闭清理"> <img src="/uploads/20260809/1786211641-broadcast-close-fallback.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="前端 BroadcastChannel 多标签页状态同步:消息去重、版本冲突与关闭清理"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/88_new_0_1.html" class="aLightGray" title="前端">前端</a>   |  1天前  |   <a href="/articletag/40157_new_0_1.html" class="aLightGray" title="[]">[]</a> · <a href="javascript:;" class="aLightGray" title="[]">[]</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/620642.html" class="aBlack" target="_blank" title="前端 BroadcastChannel 多标签页状态同步:消息去重、版本冲突与关闭清理">前端 BroadcastChannel 多标签页状态同步:消息去重、版本冲突与关闭清理</a> </dt> <dd class="cont2"> <span><i class="view"></i>333浏览</span> <span class="collectBtn user_collection" data-id="620642" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/620634.html" class="img_box" title="CSS interpolate-size 让 height:auto 可过渡:旧写法、迁移边界与降级验证"> <img src="/uploads/20260809/1786206898-css-interpolate-size-legacy.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="CSS interpolate-size 让 height:auto 可过渡:旧写法、迁移边界与降级验证"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/88_new_0_1.html" class="aLightGray" title="前端">前端</a>   |  1天前  |   <a href="/articletag/161_new_0_1.html" class="aLightGray" title="布局">布局</a> · <a href="/articletag/4729_new_0_1.html" class="aLightGray" title="css">css</a> · <a href="/articletag/40482_new_0_1.html" class="aLightGray" title="前端动画">前端动画</a> · <a href="/articletag/40483_new_0_1.html" class="aLightGray" title="浏览器兼容">浏览器兼容</a> · <a href="/articletag/40499_new_0_1.html" class="aLightGray" title="渐进增强">渐进增强</a> · <a href="javascript:;" class="aLightGray" title="CSS">CSS</a> <a href="javascript:;" class="aLightGray" title="前端动画">前端动画</a> <a href="javascript:;" class="aLightGray" title="浏览器兼容">浏览器兼容</a> <a href="javascript:;" class="aLightGray" title="interpolate-size">interpolate-size</a> <a href="javascript:;" class="aLightGray" title="height auto">height auto</a> <a href="javascript:;" class="aLightGray" title="calc-size">calc-size</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/620634.html" class="aBlack" target="_blank" title="CSS interpolate-size 让 height:auto 可过渡:旧写法、迁移边界与降级验证">CSS interpolate-size 让 height:auto 可过渡:旧写法、迁移边界与降级验证</a> </dt> <dd class="cont2"> <span><i class="view"></i>475浏览</span> <span class="collectBtn user_collection" data-id="620634" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/620625.html" class="img_box" title="前端大文件上传为什么会卡住:分片、并发窗口与断点续传的架构取舍"> <img src="/uploads/20260808/1786200839-resume-state.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="前端大文件上传为什么会卡住:分片、并发窗口与断点续传的架构取舍"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/88_new_0_1.html" class="aLightGray" title="前端">前端</a>   |  1天前  |   <a href="/articletag/243_new_0_1.html" class="aLightGray" title="前端">前端</a> · <a href="/articletag/616_new_0_1.html" class="aLightGray" title="文件上传">文件上传</a> · <a href="/articletag/729_new_0_1.html" class="aLightGray" title="性能优化">性能优化</a> · <a href="/articletag/4701_new_0_1.html" class="aLightGray" title="javascript">javascript</a> · <a href="/articletag/40054_new_0_1.html" class="aLightGray" title="浏览器API">浏览器API</a> · <a href="javascript:;" class="aLightGray" title="并发控制">并发控制</a> <a href="javascript:;" class="aLightGray" title="断点续传">断点续传</a> <a href="javascript:;" class="aLightGray" title="AbortController">AbortController</a> <a href="javascript:;" class="aLightGray" title="分片上传">分片上传</a> <a href="javascript:;" class="aLightGray" title="前端大文件上传">前端大文件上传</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/620625.html" class="aBlack" target="_blank" title="前端大文件上传为什么会卡住:分片、并发窗口与断点续传的架构取舍">前端大文件上传为什么会卡住:分片、并发窗口与断点续传的架构取舍</a> </dt> <dd class="cont2"> <span><i class="view"></i>127浏览</span> <span class="collectBtn user_collection" data-id="620625" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/620588.html" class="img_box" title="CSS 原生弹窗关闭动画怎么保留:@starting-style 与离散过渡的兼容写法"> <img src="/uploads/20260726/1785067411-css-dialog-discrete-break.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="CSS 原生弹窗关闭动画怎么保留:@starting-style 与离散过渡的兼容写法"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/88_new_0_1.html" class="aLightGray" title="前端">前端</a>   |  2星期前  |   <a href="/articletag/4729_new_0_1.html" class="aLightGray" title="css">css</a> · <a href="/articletag/40482_new_0_1.html" class="aLightGray" title="前端动画">前端动画</a> · <a href="/articletag/40483_new_0_1.html" class="aLightGray" title="浏览器兼容">浏览器兼容</a> · <a href="javascript:;" class="aLightGray" title="CSS">CSS</a> <a href="javascript:;" class="aLightGray" title="dialog">dialog</a> <a href="javascript:;" class="aLightGray" title="@starting-style">@starting-style</a> <a href="javascript:;" class="aLightGray" title="transition-behavior">transition-behavior</a> <a href="javascript:;" class="aLightGray" title="popover">popover</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/620588.html" class="aBlack" target="_blank" title="CSS 原生弹窗关闭动画怎么保留:@starting-style 与离散过渡的兼容写法">CSS 原生弹窗关闭动画怎么保留:@starting-style 与离散过渡的兼容写法</a> </dt> <dd class="cont2"> <span><i class="view"></i>444浏览</span> <span class="collectBtn user_collection" data-id="620588" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/620585.html" class="img_box" title="CSS 容器查询实现响应式卡片:container-type 与 @container 的最小配方"> <img src="/uploads/20260726/1785059602-container-query-problem.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="CSS 容器查询实现响应式卡片:container-type 与 @container 的最小配方"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/88_new_0_1.html" class="aLightGray" title="前端">前端</a>   |  2星期前  |   </span> </dd> <dt class="lineOverflow"> <a href="/article/620585.html" class="aBlack" target="_blank" title="CSS 容器查询实现响应式卡片:container-type 与 @container 的最小配方">CSS 容器查询实现响应式卡片:container-type 与 @container 的最小配方</a> </dt> <dd class="cont2"> <span><i class="view"></i>302浏览</span> <span class="collectBtn user_collection" data-id="620585" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/620544.html" class="img_box" title="CSS Grid 卡片按钮总对不齐:用 subgrid 修复内容高度漂移并保留降级方案"> <img src="/uploads/20260726/1785033785-css-subgrid-aligned.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="CSS Grid 卡片按钮总对不齐:用 subgrid 修复内容高度漂移并保留降级方案"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/88_new_0_1.html" class="aLightGray" title="前端">前端</a>   |  2星期前  |   <a href="/articletag/243_new_0_1.html" class="aLightGray" title="前端">前端</a> · <a href="/articletag/4729_new_0_1.html" class="aLightGray" title="css">css</a> · <a href="/articletag/11572_new_0_1.html" class="aLightGray" title="grid">grid</a> · <a href="/articletag/40475_new_0_1.html" class="aLightGray" title="响应式布局">响应式布局</a> · <a href="/articletag/40476_new_0_1.html" class="aLightGray" title="兼容性">兼容性</a> · <a href="javascript:;" class="aLightGray" title="卡片布局">卡片布局</a> <a href="javascript:;" class="aLightGray" title="CSS Grid">CSS Grid</a> <a href="javascript:;" class="aLightGray" title="按钮对齐">按钮对齐</a> <a href="javascript:;" class="aLightGray" title="subgrid">subgrid</a> <a href="javascript:;" class="aLightGray" title="响应式前端">响应式前端</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/620544.html" class="aBlack" target="_blank" title="CSS Grid 卡片按钮总对不齐:用 subgrid 修复内容高度漂移并保留降级方案">CSS Grid 卡片按钮总对不齐:用 subgrid 修复内容高度漂移并保留降级方案</a> </dt> <dd class="cont2"> <span><i class="view"></i>130浏览</span> <span class="collectBtn user_collection" data-id="620544" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/620523.html" class="img_box" title="前端表格列拖拽为什么会抖动:用 Pointer Events 与 requestAnimationFrame 合并布局写入"> <img src="/uploads/20260724/1784875076-column-drag-layout-hotspot.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="前端表格列拖拽为什么会抖动:用 Pointer Events 与 requestAnimationFrame 合并布局写入"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/88_new_0_1.html" class="aLightGray" title="前端">前端</a>   |  2星期前  |   <a href="/articletag/243_new_0_1.html" class="aLightGray" title="前端">前端</a> · <a href="/articletag/4701_new_0_1.html" class="aLightGray" title="javascript">javascript</a> · <a href="/articletag/40411_new_0_1.html" class="aLightGray" title="浏览器性能">浏览器性能</a> · <a href="/articletag/40461_new_0_1.html" class="aLightGray" title="交互优化">交互优化</a> · <a href="/articletag/40462_new_0_1.html" class="aLightGray" title="数据表格">数据表格</a> · <a href="javascript:;" class="aLightGray" title="前端">前端</a> <a href="javascript:;" class="aLightGray" title="性能优化">性能优化</a> <a href="javascript:;" class="aLightGray" title="requestAnimationFrame">requestAnimationFrame</a> <a href="javascript:;" class="aLightGray" title="布局抖动">布局抖动</a> <a href="javascript:;" class="aLightGray" title="表格列拖拽">表格列拖拽</a> <a href="javascript:;" class="aLightGray" title="Pointer Events">Pointer Events</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/620523.html" class="aBlack" target="_blank" title="前端表格列拖拽为什么会抖动:用 Pointer Events 与 requestAnimationFrame 合并布局写入">前端表格列拖拽为什么会抖动:用 Pointer Events 与 requestAnimationFrame 合并布局写入</a> </dt> <dd class="cont2"> <span><i class="view"></i>397浏览</span> <span class="collectBtn user_collection" data-id="620523" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/620514.html" class="img_box" title="CSS View Transitions API 实战:给无框架页面切换加上可降级动画"> <img src="/uploads/20260724/1784869103-view-transition-callback.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="CSS View Transitions API 实战:给无框架页面切换加上可降级动画"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/88_new_0_1.html" class="aLightGray" title="前端">前端</a>   |  2星期前  |   <a href="/articletag/243_new_0_1.html" class="aLightGray" title="前端">前端</a> · <a href="/articletag/4701_new_0_1.html" class="aLightGray" title="javascript">javascript</a> · <a href="/articletag/4729_new_0_1.html" class="aLightGray" title="css">css</a> · <a href="/articletag/40054_new_0_1.html" class="aLightGray" title="浏览器API">浏览器API</a> · <a href="javascript:;" class="aLightGray" title="document.startViewTransition">document.startViewTransition</a> <a href="javascript:;" class="aLightGray" title="CSS View Transitions">CSS View Transitions</a> <a href="javascript:;" class="aLightGray" title="页面切换动画">页面切换动画</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/620514.html" class="aBlack" target="_blank" title="CSS View Transitions API 实战:给无框架页面切换加上可降级动画">CSS View Transitions API 实战:给无框架页面切换加上可降级动画</a> </dt> <dd class="cont2"> <span><i class="view"></i>375浏览</span> <span class="collectBtn user_collection" data-id="620514" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/620496.html" class="img_box" title="ResizeObserver 为什么会循环触发:前端表格自适应列宽的防抖与断点"> <img src="/uploads/20260724/1784859488-resizeobserver-loop-after.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="ResizeObserver 为什么会循环触发:前端表格自适应列宽的防抖与断点"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/88_new_0_1.html" class="aLightGray" title="前端">前端</a>   |  2星期前  |   <a href="/articletag/216_new_0_1.html" class="aLightGray" title="表格">表格</a> · <a href="/articletag/243_new_0_1.html" class="aLightGray" title="前端">前端</a> · <a href="/articletag/729_new_0_1.html" class="aLightGray" title="性能优化">性能优化</a> · <a href="/articletag/4701_new_0_1.html" class="aLightGray" title="javascript">javascript</a> · <a href="/articletag/40440_new_0_1.html" class="aLightGray" title="ResizeObserver">ResizeObserver</a> · <a href="javascript:;" class="aLightGray" title="ResizeObserver">ResizeObserver</a> <a href="javascript:;" class="aLightGray" title="ResizeObserver loop completed">ResizeObserver loop completed</a> <a href="javascript:;" class="aLightGray" title="表格自适应列宽">表格自适应列宽</a> <a href="javascript:;" class="aLightGray" title="前端防抖">前端防抖</a> <a href="javascript:;" class="aLightGray" title="ResizeObserverEntry">ResizeObserverEntry</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/620496.html" class="aBlack" target="_blank" title="ResizeObserver 为什么会循环触发:前端表格自适应列宽的防抖与断点">ResizeObserver 为什么会循环触发:前端表格自适应列宽的防抖与断点</a> </dt> <dd class="cont2"> <span><i class="view"></i>301浏览</span> <span class="collectBtn user_collection" data-id="620496" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/620428.html" class="img_box" title="浏览器长任务怎么排查:用 PerformanceObserver 定位 50ms+ 主线程卡顿"> <img src="/uploads/20260720/1784540405-browser-long-task-batches.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="浏览器长任务怎么排查:用 PerformanceObserver 定位 50ms+ 主线程卡顿"> </a> <dl> <dd class="cont1"> <span> <a href="/articlelist/19_new_0_1.html" class="aLightGray" title="文章">文章</a> · <a href="/articlelist/88_new_0_1.html" class="aLightGray" title="前端">前端</a>   |  2星期前  |   <a href="/articletag/243_new_0_1.html" class="aLightGray" title="前端">前端</a> · <a href="/articletag/729_new_0_1.html" class="aLightGray" title="性能优化">性能优化</a> · <a href="/articletag/4701_new_0_1.html" class="aLightGray" title="javascript">javascript</a> · <a href="/articletag/40411_new_0_1.html" class="aLightGray" title="浏览器性能">浏览器性能</a> · <a href="/articletag/40412_new_0_1.html" class="aLightGray" title="PerformanceObserver">PerformanceObserver</a> · <a href="javascript:;" class="aLightGray" title="JSON解析">JSON解析</a> <a href="javascript:;" class="aLightGray" title="PerformanceObserver">PerformanceObserver</a> <a href="javascript:;" class="aLightGray" title="浏览器性能">浏览器性能</a> <a href="javascript:;" class="aLightGray" title="Long Task">Long Task</a> <a href="javascript:;" class="aLightGray" title="主线程卡顿">主线程卡顿</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/620428.html" class="aBlack" target="_blank" title="浏览器长任务怎么排查:用 PerformanceObserver 定位 50ms+ 主线程卡顿">浏览器长任务怎么排查:用 PerformanceObserver 定位 50ms+ 主线程卡顿</a> </dt> <dd class="cont2"> <span><i class="view"></i>421浏览</span> <span class="collectBtn user_collection" data-id="620428" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> </ul> </div> </div> <div class="mainRight"> <!-- 右侧广告位banner --> <div class="rightContBox" style="margin-top: 0px;"> <div class="rightTit"> <a href="/courselist.html" class="more" title="查看更多">查看更多<i class="iconfont"></i></a> <div class="tit lineOverflow">课程推荐</div> </div> <ul class="lessonRecomRList"> <li> <a href="/course/9.html" class="img_box" target="_blank" title="前端进阶之JavaScript设计模式"> <img src="/uploads/20221222/52fd0f23a454c71029c2c72d206ed815.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="前端进阶之JavaScript设计模式"> </a> <dl> <dt class="lineTwoOverflow"><a href="/course/9.html" target="_blank" class="aBlack" title="前端进阶之JavaScript设计模式">前端进阶之JavaScript设计模式</a></dt> <dd class="cont1 lineTwoOverflow"> 设计模式是开发人员在软件开发过程中面临一般问题时的解决方案,代表了最佳的实践。本课程的主打内容包括JS常见设计模式以及具体应用场景,打造一站式知识长龙服务,适合有JS基础的同学学习。 </dd> <dd class="cont2">543次学习</dd> </dl> </li> <li> <a href="/course/2.html" class="img_box" target="_blank" title="GO语言核心编程课程"> <img src="/uploads/20221221/634ad7404159bfefc6a54a564d437b5f.png" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="GO语言核心编程课程"> </a> <dl> <dt class="lineTwoOverflow"><a href="/course/2.html" target="_blank" class="aBlack" title="GO语言核心编程课程">GO语言核心编程课程</a></dt> <dd class="cont1 lineTwoOverflow"> 本课程采用真实案例,全面具体可落地,从理论到实践,一步一步将GO核心编程技术、编程思想、底层实现融会贯通,使学习者贴近时代脉搏,做IT互联网时代的弄潮儿。 </dd> <dd class="cont2">516次学习</dd> </dl> </li> <li> <a href="/course/74.html" class="img_box" target="_blank" title="简单聊聊mysql8与网络通信"> <img src="/uploads/20240103/bad35fe14edbd214bee16f88343ac57c.png" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="简单聊聊mysql8与网络通信"> </a> <dl> <dt class="lineTwoOverflow"><a href="/course/74.html" target="_blank" class="aBlack" title="简单聊聊mysql8与网络通信">简单聊聊mysql8与网络通信</a></dt> <dd class="cont1 lineTwoOverflow"> 如有问题加微信:Le-studyg;在课程中,我们将首先介绍MySQL8的新特性,包括性能优化、安全增强、新数据类型等,帮助学生快速熟悉MySQL8的最新功能。接着,我们将深入解析MySQL的网络通信机制,包括协议、连接管理、数据传输等,让 </dd> <dd class="cont2">500次学习</dd> </dl> </li> <li> <a href="/course/57.html" class="img_box" target="_blank" title="JavaScript正则表达式基础与实战"> <img src="/uploads/20221226/bbe4083bb3cb0dd135fb02c31c3785fb.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="JavaScript正则表达式基础与实战"> </a> <dl> <dt class="lineTwoOverflow"><a href="/course/57.html" target="_blank" class="aBlack" title="JavaScript正则表达式基础与实战">JavaScript正则表达式基础与实战</a></dt> <dd class="cont1 lineTwoOverflow"> 在任何一门编程语言中,正则表达式,都是一项重要的知识,它提供了高效的字符串匹配与捕获机制,可以极大的简化程序设计。 </dd> <dd class="cont2">487次学习</dd> </dl> </li> <li> <a href="/course/28.html" class="img_box" target="_blank" title="从零制作响应式网站—Grid布局"> <img src="/uploads/20221223/ac110f88206daeab6c0cf38ebf5fe9ed.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="从零制作响应式网站—Grid布局"> </a> <dl> <dt class="lineTwoOverflow"><a href="/course/28.html" target="_blank" class="aBlack" title="从零制作响应式网站—Grid布局">从零制作响应式网站—Grid布局</a></dt> <dd class="cont1 lineTwoOverflow"> 本系列教程将展示从零制作一个假想的网络科技公司官网,分为导航,轮播,关于我们,成功案例,服务流程,团队介绍,数据部分,公司动态,底部信息等内容区块。网站整体采用CSSGrid布局,支持响应式,有流畅过渡和展现动画。 </dd> <dd class="cont2">485次学习</dd> </dl> </li> </ul> </div> <div class="rightContBox"> <div class="rightTit"> <a href="/ai.html" class="more" title="查看更多">查看更多<i class="iconfont"></i></a> <div class="tit lineOverflow">AI推荐</div> </div> <ul class="lessonRecomRList"> <li> <a href="/ai/13109.html" target="_blank" title="ljg-skills - "Prompt之神"李继刚开源的 AI 技能集" class="img_box"> <img src="/uploads/ai/20260616/ljg-skills-icon-8bbe1468e5.png" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="ljg-skills - "Prompt之神"李继刚开源的 AI 技能集" style="object-fit:cover;width:100%;height:100%;"> </a> <dl> <dt class="lineTwoOverflow"><a href="/ai/13109.html" class="aBlack" target="_blank" title="ljg-skills">ljg-skills</a></dt> <dd class="cont1 lineTwoOverflow"> ljg-skills 是李继刚开源的 AI 技能与提示词集合,面向大模型使用者整理了一批可复用的 prompt、角色设定和任务技能模板,适合用于学习提示词设计、搭建个人 AI 工作流和沉淀团队常用智能体能力。 </dd> <dd class="cont2">4784次使用</dd> </dl> </li> <li> <a href="/ai/13108.html" target="_blank" title="MELO音乐 - AI 音乐生成平台,支持多模态创作能力" class="img_box"> <img src="/uploads/ai/20260616/melo-icon-10bf590762.png" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="MELO音乐 - AI 音乐生成平台,支持多模态创作能力" style="object-fit:cover;width:100%;height:100%;"> </a> <dl> <dt class="lineTwoOverflow"><a href="/ai/13108.html" class="aBlack" target="_blank" title="MELO音乐">MELO音乐</a></dt> <dd class="cont1 lineTwoOverflow"> MELO音乐是一站式AI视频与音乐制作助手,对标suno, udio的高品质体验。提供伴奏生成、原创写词、无损导出、哼唱识曲、混音变声等全套音频与短视频编辑工具。无论是流行Kpop、电音说唱、民谣古风、摇滚儿歌还是商用轻音乐,MELO为你免费谱曲,轻松做同款! </dd> <dd class="cont2">4374次使用</dd> </dl> </li> <li> <a href="/ai/13107.html" target="_blank" title="UniScribe - AI 免费在线音视频转文字平台" class="img_box"> <img src="/uploads/ai/20260616/uniscribe-icon-3c88366a15.png" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="UniScribe - AI 免费在线音视频转文字平台" style="object-fit:cover;width:100%;height:100%;"> </a> <dl> <dt class="lineTwoOverflow"><a href="/ai/13107.html" class="aBlack" target="_blank" title="UniScribe">UniScribe</a></dt> <dd class="cont1 lineTwoOverflow"> UniScribe 是一款 AI 音视频转文字与内容整理工具,支持上传音频、视频文件或粘贴 YouTube 链接,自动生成转写文本、摘要、思维导图和关键问题,并支持多格式导出,适合会议记录、课程学习、访谈整理和内容创作复盘。 </dd> <dd class="cont2">4321次使用</dd> </dl> </li> <li> <a href="/ai/13106.html" target="_blank" title="剧云 - 免费 AI 智能中文剧本创作平台" class="img_box"> <img src="/uploads/ai/20260615/d36c7176-icon-2b0cd581ce.png" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="剧云 - 免费 AI 智能中文剧本创作平台" style="object-fit:cover;width:100%;height:100%;"> </a> <dl> <dt class="lineTwoOverflow"><a href="/ai/13106.html" class="aBlack" target="_blank" title="剧云">剧云</a></dt> <dd class="cont1 lineTwoOverflow"> 剧云是专业中文剧本创作平台,安全稳定运行十余年,集成AI编剧、剧本医生审核、人物小传、剧情关系图、大纲编写、多人协作、Word导入导出、版权管控功能,数据安全防护,轻松高效创作剧本。 </dd> <dd class="cont2">4561次使用</dd> </dl> </li> <li> <a href="/ai/13105.html" target="_blank" title="万象有声 - AI 一站式有声内容创作平台" class="img_box"> <img src="/uploads/ai/20260615/50267bac-icon-c146b001b5.png" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="万象有声 - AI 一站式有声内容创作平台" style="object-fit:cover;width:100%;height:100%;"> </a> <dl> <dt class="lineTwoOverflow"><a href="/ai/13105.html" class="aBlack" target="_blank" title="万象有声">万象有声</a></dt> <dd class="cont1 lineTwoOverflow"> 万象有声,一个专为有声创作者打造的新一代智能有声内容创作平台。平台提供专业的智能拆章、智能画本编辑、AI配音、AI生成音效、后期制作、智能对轨、智能审听等有声创作全流程工具,可以帮助创作者高效、低成本创作出引人入胜的有声作品。立即体验,让有声书制作更简单! </dd> <dd class="cont2">4506次使用</dd> </dl> </li> </ul> </div> <!-- 相关文章 --> <div class="rightContBox"> <div class="rightTit"> <a href="/articlelist.html" class="more" title="查看更多">查看更多<i class="iconfont"></i></a> <div class="tit lineOverflow">相关文章</div> </div> <ul class="aboutArticleRList"> <li> <dl> <dt class="lineTwoOverflow"><a href="/article/207000.html" class="aBlack" title="JavaScript函数定义及示例详解">JavaScript函数定义及示例详解</a></dt> <dd> <span class="left">2025-05-11</span> <span class="right">502浏览</span> </dd> </dl> </li> <li> <dl> <dt class="lineTwoOverflow"><a href="/article/619053.html" class="aBlack" title="CSS变量简化按钮悬停效果技巧">CSS变量简化按钮悬停效果技巧</a></dt> <dd> <span class="left">2026-05-31</span> <span class="right">501浏览</span> </dd> </dl> </li> <li> <dl> <dt class="lineTwoOverflow"><a href="/article/618916.html" class="aBlack" title="JavaScript符号类型详解与应用">JavaScript符号类型详解与应用</a></dt> <dd> <span class="left">2026-05-31</span> <span class="right">501浏览</span> </dd> </dl> </li> <li> <dl> <dt class="lineTwoOverflow"><a href="/article/612539.html" class="aBlack" title="HTML剪贴板复制粘贴怎么用">HTML剪贴板复制粘贴怎么用</a></dt> <dd> <span class="left">2026-05-26</span> <span class="right">501浏览</span> </dd> </dl> </li> <li> <dl> <dt class="lineTwoOverflow"><a href="/article/611774.html" class="aBlack" title="data-*属性详解:HTML数据存储与DOM操作技巧">data-*属性详解:HTML数据存储与DOM操作技巧</a></dt> <dd> <span class="left">2026-05-25</span> <span class="right">501浏览</span> </dd> </dl> </li> </ul> </div> </div> </div> <div class="footer"> <div class="footerIn"> <div class="footLeft"> <div class="linkBox"> <a href="/about/1.html" target="_blank" class="aBlack" title="关于我们">关于我们</a> <a href="/about/5.html" target="_blank" class="aBlack" title="免责声明">免责声明</a> <a href="#" class="aBlack" title="意见反馈">意见反馈</a> <a href="/about/2.html" class="aBlack" target="_blank" title="联系我们">联系我们</a> <a href="/send.html" class="aBlack" title="广告合作">内容提交</a> <a href="/manual/go/" target="_blank" class="aBlack" title="手册">手册</a> </div> <div class="footTip">Golang学习网:公益在线Go学习平台,帮助Go学习者快速成长!</div> <div class="shareBox"> <span><i class="qq"></i>技术交流群</span> </div> <div class="copyRight"> Copyright 2023 http://www.17golang.com/ All Rights Reserved | <a href="https://beian.miit.gov.cn/" target="_blank" title="备案">湘ICP备19018815号-4</a> </div> </div> <div class="footRight"> <ul class="encodeList"> <li> <div class="encodeImg"> <img src="/assets/examples/qrcode_for_gh.jpg" alt="Golang学习网"> </div> <div class="tit">关注公众号</div> <div class="tip">Golang学习网</div> </li> <div class="clear"></div> </ul> </div> <div class="clear"></div> </div> </div> <!-- 微信登录弹窗 --> <style> .popupBg .n-error{ color: red; } </style> <div class="popupBg"> <div class="loginBoxBox"> <div class="imgbg"> <img src="/assets/images/leftlogo.jpg" alt=""> </div> <!-- 微信登录 --> <div class="loginInfo encodeLogin" style="display: none;"> <div class="closeIcon" onclick="$('.popupBg').hide();"></div> <div class="changeLoginType cursorPointer create_wxqrcode" onclick="$('.loginInfo').hide();$('.passwordLogin').show();"> <div class="tip">密码登录在这里</div> </div> <div class="encodeInfo"> <div class="tit"><i></i> 微信扫码登录或注册</div> <div class="encodeImg"> <span id="wx_login_qrcode"><img src="/assets/examples/code.png" alt="二维码"></span> <!-- <div class="refreshBox"> <p>二维码失效</p> <button type="button" class="create_wxqrcode">刷新1111</button> </div> --> </div> <div class="tip">打开微信扫一扫,快速登录/注册</div> </div> <div class="beforeLoginTip">登录即同意 <a href="#" class="aBlue" title="用户协议">用户协议</a> 和 <a href="#" class="aBlue" title="隐私政策">隐私政策</a></div> </div> <!-- 密码登录 --> <div class="loginInfo passwordLogin"> <div class="closeIcon" onclick="$('.popupBg').hide();"></div> <div class="changeLoginType cursorPointer create_wxqrcode" onclick="$('.loginInfo').hide();$('.encodeLogin').show();"> <div class="tip">微信登录更方便</div> </div> <div class="passwordInfo"> <ul class="logintabs selfTabMenu"> <li class="selfTabItem loginFormLi curr">密码登录</li> <li class="selfTabItem registerFormBox ">注册账号</li> </ul> <div class="selfTabContBox"> <div class="selfTabCont loginFormBox" style="display: block;"> <form name="form" id="login-form" class="form-vertical form" method="POST" action="/index/user/login"> <input type="hidden" name="url" value="//www.17golang.com/article/581213.html"/> <input type="hidden" name="__token__" value="236da4d8546a36de7c4b11274e45a1bb" /> <div class="form-group" style="height:70px;"> <input class="form-control" id="account" type="text" name="account" value="" data-rule="required" placeholder="邮箱/用户名" autocomplete="off"> </div> <div class="form-group" style="height:70px;"> <input class="form-control" id="password" type="password" name="password" data-rule="required;password" placeholder="密码" autocomplete="off"> </div> <div class="codeBox" style="height:70px;"> <div class="form-group" style="height:70px; width:205px; float: left;"> <input type="text" name="captcha" class="form-control" placeholder="验证码" data-rule="required;length(4)" /> </div> <span class="input-group-btn" style="padding:0;border:none;"> <img src="/captcha.html" width="100" height="45" onclick="this.src = '/captcha.html?r=' + Math.random();"/> </span> </div> <div class="other"> <a href="#" class="forgetPwd aGray" onclick="$('.loginInfo').hide();$('.passwordForget').show();" title="忘记密码">忘记密码</a> </div> <div class="loginBtn mt25"> <button type="submit">登录</button> </div> </form> </div> <div class="selfTabCont registerFormBox" style="display: none;"> <form name="form1" id="register-form" class="form-vertical form" method="POST" action="/index/user/register"> <input type="hidden" name="invite_user_id" value="0"/> <input type="hidden" name="url" value="//www.17golang.com/article/581213.html"/> <input type="hidden" name="__token__" value="236da4d8546a36de7c4b11274e45a1bb" /> <div class="form-group" style="height:70px;"> <input type="text" name="email" id="email2" data-rule="required;email" class="form-control" placeholder="邮箱"> </div> <div class="form-group" style="height:70px;"> <input type="text" id="username" name="username" data-rule="required;username" class="form-control" placeholder="用户名必须3-30个字符"> </div> <div class="form-group" style="height:70px;"> <input type="password" id="password2" name="password" data-rule="required;password" class="form-control" placeholder="密码必须6-30个字符"> </div> <div class="codeBox" style="height:70px;"> <div class="form-group" style="height:70px; width:205px; float: left;"> <input type="text" name="captcha" class="form-control" placeholder="验证码" data-rule="required;length(4)" /> </div> <span class="input-group-btn" style="padding:0;border:none;"> <img src="/captcha.html" width="100" height="45" onclick="this.src = '/captcha.html?r=' + Math.random();"/> </span> </div> <div class="loginBtn"> <button type="submit">注册</button> </div> </form> </div> </div> </div> <div class="beforeLoginTip">登录即同意 <a href="https://www.17golang.com/about/3.html" target="_blank" class="aBlue" title="用户协议">用户协议</a> 和 <a href="https://www.17golang.com/about/4.html" target="_blank" class="aBlue" title="隐私政策">隐私政策</a></div> </div> <!-- 重置密码 --> <div class="loginInfo passwordForget"> <div class="closeIcon" onclick="$('.popupBg').hide();"></div> <div class="returnLogin cursorPointer" onclick="$('.passwordForget').hide();$('.passwordLogin').show();">返回登录</div> <div class="passwordInfo"> <ul class="logintabs selfTabMenu"> <li class="selfTabItem">重置密码</li> </ul> <div class="selfTabContBox"> <div class="selfTabCont"> <form id="resetpwd-form" class="form-horizontal form-layer nice-validator n-default n-bootstrap form" method="POST" action="/api/user/resetpwd.html" novalidate="novalidate"> <div style="height:70px;"> <input type="text" class="form-control" id="email" name="email" value="" placeholder="输入邮箱" aria-invalid="true"> </div> <div class="codeBox" style="height:70px;"> <div class="form-group" style="height:70px; width:205px; float: left;"> <input type="text" name="captcha" class="form-control" placeholder="验证码" /> </div> <span class="input-group-btn" style="padding:0;border:none;"> <a href="javascript:;" class="btn btn-primary btn-captcha cursorPointer" style="background: #2080F8; border-radius: 4px; color: #fff; padding: 12px; position: absolute;" data-url="/api/ems/send.html" data-type="email" data-event="resetpwd">发送验证码</a> </span> </div> <input type="password" class="form-control" id="newpassword" name="newpassword" value="" placeholder="请输入6-18位密码"> <div class="loginBtn mt25"> <button type="submit">重置密码</button> </div> </form> </div> </div> </div> </div> </div> </div> <script src="/assets/js/juejin-theme.js?v=20260613b" defer></script> <script> var _hmt = _hmt || []; (function() { var hm = document.createElement("script"); hm.src = "https://hm.baidu.com/hm.js?e34c3e8ab31ba35d7e1c48ea8d77315f"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })(); </script> <script src="/assets/js/frontend/common.js"></script> </body> </html>