当前位置:首页 > 文章列表 > 文章 > 前端 > HTML5基础标签使用教程详解

HTML5基础标签使用教程详解

2025-12-11 21:41:47 0浏览 收藏

一分耕耘,一分收获!既然都打开这篇《HTML5基础语法与标签使用教程》,就坚持看下去,学下去吧!本文主要会给大家讲到等等知识点,如果大家对本文有好的建议或者看到有不足之处,非常欢迎大家积极提出!在后续文章我会继续更新文章相关的内容,希望对大家都有所帮助!

HTML5是构建网页的标准语言,优化了语义化结构并增强多媒体支持。1. 基本结构包括声明、根元素、元信息区(含字符编码、视口设置和标题)及主体内容区。2. 语义化标签如

html5怎么用_HTML5基本语法结构与标签使用方法教程

HTML5 是构建网页的标准语言,它在原有 HTML 基础上进行了优化和扩展,支持更清晰的语义化结构和多媒体功能。要开始使用 HTML5,首先需要掌握其基本语法结构和常用标签的使用方法。

1. HTML5 文档的基本结构

每个 HTML5 页面都应包含一个标准的文档结构,确保浏览器能正确解析和显示内容。






页面标题


欢迎使用 HTML5


这是一个段落。



说明:

  • :声明文档类型为 HTML5,必须放在第一行。
  • :根元素,lang 属性指定语言(如 zh 表示中文)。
  • :包含页面元信息,如编码、视口设置、标题等。
  • :声明字符编码,避免乱码。
  • :用于响应式设计,适配移动设备。
  • </strong>:定义浏览器标签页上显示的标题。</li> <li><strong><body></strong>:页面主体,所有可见内容放在这里。</li> </ul><h3>2. 常用语义化标签</h3> <p>HTML5 引入了多个语义化标签,使结构更清晰,利于 SEO 和可维护性。</p> <ul><li><strong><header></strong>:页面或区块的头部,常用于放置导航和标题。</li> <li><strong><nav></strong>:导航栏,包含主要链接。</li> <li><strong><main></strong>:页面主要内容,每个页面建议只有一个。</li> <li><strong><article></strong>:独立的文章内容,如博客文章。</li> <li><strong><section></strong>:文档中的一个区域或章节。</li> <li><strong><aside></strong>:侧边栏,与主内容相关但可独立存在。</li> <li><strong><footer></strong>:页脚,通常包含版权信息或联系方式。</li> </ul><p>示例:</p> <font face="Courier New"> <header><br> <h1>我的网站</h1><br> <nav><br> <a href="#home">首页</a><br> <a href="#about">关于</a><br> </nav><br> </header><br><br> <main><br> <article><br> <h2>文章标题</h2><br> <p>这是文章内容……</p><br> </article><br> </main><br><br> <aside><br> <p>推荐内容</p><br> </aside><br><br> <footer><br> <p>© 2025 我的网站. 版权所有.</p><br> </footer> </font> <h3>3. 常用内容标签</h3> <p>除了结构标签,HTML5 还提供了丰富的文本和媒体标签。</p> <ul><li><strong><h1> 到 <h6></strong>:标题层级,h1 最重要。</li> <li><strong><p></strong>:段落文本。</li> <li><strong><a href="url"></strong>:超链接,href 指定跳转地址。</li> <li><strong><img src="图片路径" alt="描述"></strong>:插入图片,alt 提供替代文本。</li> <li><strong><ul>, <ol>, <li></strong>:无序列表、有序列表和列表项。</li> <li><strong><div></strong>:通用容器,用于布局或样式分组。</li> <li><strong><span></strong>:行内容器,用于局部文本样式控制。</li> </ul><h3>4. 表单与输入控件(HTML5 新增)</h3> <p>HTML5 扩展了表单功能,新增多种输入类型和属性。</p> <ul><li><strong><input type="email"></strong>:邮箱输入,自动验证格式。</li> <li><strong><input type="date"></strong>:日期选择器。</li> <li><strong><input type="number"></strong>:数字输入框。</li> <li><strong><input type="search"></strong>:搜索框,部分浏览器显示清除按钮。</li> <li><strong><input placeholder="提示文字"></strong>:输入框提示信息。</li> <li><strong><input required></strong>:必填字段,提交前校验。</li> </ul><p>示例:</p> <font face="Courier New"> <form action="/submit" method="post"><br> <label>邮箱:<br> <input type="email" name="email" placeholder="请输入邮箱" required><br> </label><br> <br><br> <label>生日:<br> <input type="date" name="birthday"><br> </label><br> <br><br> <button type="submit">提交</button><br> </form> </font> <p>基本上就这些。掌握以上结构和标签,就能写出规范、现代的 HTML5 页面。实际开发中结合 CSS 和 JavaScript 可实现更丰富的效果。不复杂但容易忽略细节,比如闭合标签、属性加引号、alt 文本等,注意这些能让代码更健壮。</p><p>本篇关于《HTML5基础标签使用教程详解》的介绍就到此结束啦,但是学无止境,想要了解学习更多关于文章的相关知识,请关注golang学习网公众号!</p> </div> <div class="labsList"> <a href="javascript:;" title="HTML5">HTML5</a> </div> <div class="cateBox"> <div class="cateItem"> <a href="/article/417211.html" title="微博网页版入口及使用技巧" class="img_box"> <img src="/uploads/20251211/1765460447693ac9dfc766b.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="微博网页版入口及使用技巧">微博网页版入口及使用技巧 </a> <dl> <dt class="lineOverflow"><a href="/article/417211.html" title="微博网页版入口及使用技巧" class="aBlack">上一篇<i></i></a></dt> <dd class="lineTwoOverflow">微博网页版入口及使用技巧</dd> </dl> </div> <div class="cateItem"> <a href="/article/417213.html" title="AI小程序如何抖音推广?变现有前景吗" class="img_box"> <img src="/uploads/20251211/1765460557693aca4dc7ee5.jpg" onerror="this.onerror='',this.src='/assets/images/moren/morentu.png'" alt="AI小程序如何抖音推广?变现有前景吗"> </a> <dl> <dt class="lineOverflow"><a href="/article/417213.html" class="aBlack" title="AI小程序如何抖音推广?变现有前景吗">下一篇<i></i></a></dt> <dd class="lineTwoOverflow">AI小程序如何抖音推广?变现有前景吗</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/621811.html" class="img_box" title="CSS if() 条件函数怎么减少主题分支:自定义属性、回退与浏览器支持检查"> <img src="/uploads/20260824/1787579854-css-if-fallback-branch.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="CSS if() 条件函数怎么减少主题分支:自定义属性、回退与浏览器支持检查"> </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>   |  18分钟前  |   <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/40483_new_0_1.html" class="aLightGray" title="浏览器兼容">浏览器兼容</a> · <a href="/articletag/40808_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="CSS if()">CSS if()</a> <a href="javascript:;" class="aLightGray" title="CSS条件函数">CSS条件函数</a> <a href="javascript:;" class="aLightGray" title="主题变量">主题变量</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/621811.html" class="aBlack" target="_blank" title="CSS if() 条件函数怎么减少主题分支:自定义属性、回退与浏览器支持检查">CSS if() 条件函数怎么减少主题分支:自定义属性、回退与浏览器支持检查</a> </dt> <dd class="cont2"> <span><i class="view"></i>216浏览</span> <span class="collectBtn user_collection" data-id="621811" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/621799.html" class="img_box" title="前端上传文件怎么防 SVG 风险:扩展名、MIME 与内容校验的边界"> <img src="/uploads/20260824/1787577266-svg-upload-boundary.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="前端上传文件怎么防 SVG 风险:扩展名、MIME 与内容校验的边界"> </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/1364_new_0_1.html" class="aLightGray" title="安全">安全</a> · <a href="/articletag/9275_new_0_1.html" class="aLightGray" title="svg">svg</a> · <a href="javascript:;" class="aLightGray" title="MIME类型">MIME类型</a> <a href="javascript:;" class="aLightGray" title="前端文件上传">前端文件上传</a> <a href="javascript:;" class="aLightGray" title="SVG安全">SVG安全</a> <a href="javascript:;" class="aLightGray" title="内容校验">内容校验</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/621799.html" class="aBlack" target="_blank" title="前端上传文件怎么防 SVG 风险:扩展名、MIME 与内容校验的边界">前端上传文件怎么防 SVG 风险:扩展名、MIME 与内容校验的边界</a> </dt> <dd class="cont2"> <span><i class="view"></i>398浏览</span> <span class="collectBtn user_collection" data-id="621799" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/621780.html" class="img_box" title="浏览器 View Transitions API 怎么处理列表增删:跨页面动画与无障碍降级"> <img src="/uploads/20260824/1787572133-view-transitions-accessibility.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="浏览器 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小时前  |   </span> </dd> <dt class="lineOverflow"> <a href="/article/621780.html" class="aBlack" target="_blank" title="浏览器 View Transitions API 怎么处理列表增删:跨页面动画与无障碍降级">浏览器 View Transitions API 怎么处理列表增删:跨页面动画与无障碍降级</a> </dt> <dd class="cont2"> <span><i class="view"></i>441浏览</span> <span class="collectBtn user_collection" data-id="621780" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/621767.html" class="img_box" title="前端首屏图片加载顺序怎么控:fetchpriority、loading 与 LCP 验收"> <img src="/uploads/20260824/1787568996-lcp-waterfall.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="前端首屏图片加载顺序怎么控:fetchpriority、loading 与 LCP 验收"> </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>   |  3小时前  |   </span> </dd> <dt class="lineOverflow"> <a href="/article/621767.html" class="aBlack" target="_blank" title="前端首屏图片加载顺序怎么控:fetchpriority、loading 与 LCP 验收">前端首屏图片加载顺序怎么控:fetchpriority、loading 与 LCP 验收</a> </dt> <dd class="cont2"> <span><i class="view"></i>476浏览</span> <span class="collectBtn user_collection" data-id="621767" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/621745.html" class="img_box" title="前端大列表滚动为什么会掉帧:虚拟列表、批量渲染与 60 FPS 验收"> <img src="/uploads/20260824/1787562407-frontend-batched-render.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="前端大列表滚动为什么会掉帧:虚拟列表、批量渲染与 60 FPS 验收"> </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>   |  5小时前  |   <a href="/articletag/39768_new_0_1.html" class="aLightGray" title="前端性能">前端性能</a> · <a href="/articletag/39783_new_0_1.html" class="aLightGray" title="虚拟列表">虚拟列表</a> · <a href="/articletag/40411_new_0_1.html" class="aLightGray" title="浏览器性能">浏览器性能</a> · <a href="/articletag/40842_new_0_1.html" class="aLightGray" title="DOM渲染">DOM渲染</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="滚动掉帧">滚动掉帧</a> <a href="javascript:;" class="aLightGray" title="60 FPS">60 FPS</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/621745.html" class="aBlack" target="_blank" title="前端大列表滚动为什么会掉帧:虚拟列表、批量渲染与 60 FPS 验收">前端大列表滚动为什么会掉帧:虚拟列表、批量渲染与 60 FPS 验收</a> </dt> <dd class="cont2"> <span><i class="view"></i>458浏览</span> <span class="collectBtn user_collection" data-id="621745" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/621744.html" class="img_box" title="CSS scroll snap 怎么做横向卡片滑动:scroll-snap-stop、触摸手势与键盘验收"> <img src="/uploads/20260824/1787562397-css-scroll-snap-proximity-vs-mandatory.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="CSS scroll snap 怎么做横向卡片滑动:scroll-snap-stop、触摸手势与键盘验收"> </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>   |  5小时前  |   <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/40050_new_0_1.html" class="aLightGray" title="可访问性">可访问性</a> · <a href="/articletag/40555_new_0_1.html" class="aLightGray" title="交互">交互</a> · <a href="javascript:;" class="aLightGray" title="scroll-snap-type">scroll-snap-type</a> <a href="javascript:;" class="aLightGray" title="触摸滑动">触摸滑动</a> <a href="javascript:;" class="aLightGray" title="CSS scroll snap">CSS scroll snap</a> <a href="javascript:;" class="aLightGray" title="scroll-snap-stop">scroll-snap-stop</a> <a href="javascript:;" class="aLightGray" title="横向卡片">横向卡片</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/621744.html" class="aBlack" target="_blank" title="CSS scroll snap 怎么做横向卡片滑动:scroll-snap-stop、触摸手势与键盘验收">CSS scroll snap 怎么做横向卡片滑动:scroll-snap-stop、触摸手势与键盘验收</a> </dt> <dd class="cont2"> <span><i class="view"></i>404浏览</span> <span class="collectBtn user_collection" data-id="621744" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/621707.html" class="img_box" title="浏览器 scheduler.postTask 怎么安排后台任务:优先级、取消与降级策略"> <img src="/uploads/20260824/1787554580-scheduler-posttask-cancel-fallback.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="浏览器 scheduler.postTask 怎么安排后台任务:优先级、取消与降级策略"> </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>   |  7小时前  |   <a href="/articletag/1307_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/39768_new_0_1.html" class="aLightGray" title="前端性能">前端性能</a> · <a href="javascript:;" class="aLightGray" title="scheduler.postTask">scheduler.postTask</a> <a href="javascript:;" class="aLightGray" title="Prioritized Task Scheduling">Prioritized Task Scheduling</a> <a href="javascript:;" class="aLightGray" title="TaskController">TaskController</a> <a href="javascript:;" class="aLightGray" title="前端任务调度">前端任务调度</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/621707.html" class="aBlack" target="_blank" title="浏览器 scheduler.postTask 怎么安排后台任务:优先级、取消与降级策略">浏览器 scheduler.postTask 怎么安排后台任务:优先级、取消与降级策略</a> </dt> <dd class="cont2"> <span><i class="view"></i>372浏览</span> <span class="collectBtn user_collection" data-id="621707" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/621688.html" class="img_box" title="CSS color-mix 怎么控制主题色过渡:混合空间、透明度与降级验收"> <img src="/uploads/20260824/1787549485-color-mix-contrast.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="CSS color-mix 怎么控制主题色过渡:混合空间、透明度与降级验收"> </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>   |  8小时前  |   <a href="/articletag/4729_new_0_1.html" class="aLightGray" title="css">css</a> · <a href="/articletag/5401_new_0_1.html" class="aLightGray" title="前端开发">前端开发</a> · <a href="/articletag/40634_new_0_1.html" class="aLightGray" title="无障碍设计">无障碍设计</a> · <a href="/articletag/40808_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="color-mix">color-mix</a> <a href="javascript:;" class="aLightGray" title="颜色空间">颜色空间</a> <a href="javascript:;" class="aLightGray" title="降级验收">降级验收</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/621688.html" class="aBlack" target="_blank" title="CSS color-mix 怎么控制主题色过渡:混合空间、透明度与降级验收">CSS color-mix 怎么控制主题色过渡:混合空间、透明度与降级验收</a> </dt> <dd class="cont2"> <span><i class="view"></i>465浏览</span> <span class="collectBtn user_collection" data-id="621688" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/621665.html" class="img_box" title="前端表单撤销为什么回不去:beforeinput、composition 与 undo 栈边界"> <img src="/uploads/20260824/1787541845-beforeinput-event-boundary.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="前端表单撤销为什么回不去:beforeinput、composition 与 undo 栈边界"> </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>   |  10小时前  |   </span> </dd> <dt class="lineOverflow"> <a href="/article/621665.html" class="aBlack" target="_blank" title="前端表单撤销为什么回不去:beforeinput、composition 与 undo 栈边界">前端表单撤销为什么回不去:beforeinput、composition 与 undo 栈边界</a> </dt> <dd class="cont2"> <span><i class="view"></i>186浏览</span> <span class="collectBtn user_collection" data-id="621665" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/621643.html" class="img_box" title="网页弹窗按 ESC 怎么统一关闭:CloseWatcher 与 dialog 的回退边界"> <img src="/uploads/20260824/1787534476-closewatcher-chain.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="网页弹窗按 ESC 怎么统一关闭:CloseWatcher 与 dialog 的回退边界"> </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>   |  12小时前  |   <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/40050_new_0_1.html" class="aLightGray" title="可访问性">可访问性</a> · <a href="/articletag/40780_new_0_1.html" class="aLightGray" title="Web API">Web API</a> · <a href="javascript:;" class="aLightGray" title="可访问性">可访问性</a> <a href="javascript:;" class="aLightGray" title="dialog">dialog</a> <a href="javascript:;" class="aLightGray" title="CloseWatcher">CloseWatcher</a> <a href="javascript:;" class="aLightGray" title="ESC键">ESC键</a> <a href="javascript:;" class="aLightGray" title="前端弹窗">前端弹窗</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/621643.html" class="aBlack" target="_blank" title="网页弹窗按 ESC 怎么统一关闭:CloseWatcher 与 dialog 的回退边界">网页弹窗按 ESC 怎么统一关闭:CloseWatcher 与 dialog 的回退边界</a> </dt> <dd class="cont2"> <span><i class="view"></i>126浏览</span> <span class="collectBtn user_collection" data-id="621643" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/621642.html" class="img_box" title="HTML Popover API 怎么做可关闭浮层:popover、关闭按钮与键盘回退"> <img src="/uploads/20260824/1787534199-popover-fallback-check.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="HTML Popover API 怎么做可关闭浮层:popover、关闭按钮与键盘回退"> </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>   |  12小时前  |   </span> </dd> <dt class="lineOverflow"> <a href="/article/621642.html" class="aBlack" target="_blank" title="HTML Popover API 怎么做可关闭浮层:popover、关闭按钮与键盘回退">HTML Popover API 怎么做可关闭浮层:popover、关闭按钮与键盘回退</a> </dt> <dd class="cont2"> <span><i class="view"></i>136浏览</span> <span class="collectBtn user_collection" data-id="621642" data-type="article" title="收藏"><i class="collect"></i>收藏</span> </dd> </dl> </div> </li> <li> <div class="contBox"> <a href="/article/621625.html" class="img_box" title="CSS animation-composition 怎么叠加 transform:add、accumulate 与关键帧冲突排查"> <img src="/uploads/20260823/1787496165-css-animation-composition-debug.webp" onerror="this.src='/assets/images/moren/morentu.png'" alt="CSS animation-composition 怎么叠加 transform:add、accumulate 与关键帧冲突排查"> </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>   |  23小时前  |   <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/40702_new_0_1.html" class="aLightGray" title="动画">动画</a> · <a href="javascript:;" class="aLightGray" title="CSS">CSS</a> <a href="javascript:;" class="aLightGray" title="transform">transform</a> <a href="javascript:;" class="aLightGray" title="关键帧">关键帧</a> <a href="javascript:;" class="aLightGray" title="animation-composition">animation-composition</a> </span> </dd> <dt class="lineOverflow"> <a href="/article/621625.html" class="aBlack" target="_blank" title="CSS animation-composition 怎么叠加 transform:add、accumulate 与关键帧冲突排查">CSS animation-composition 怎么叠加 transform:add、accumulate 与关键帧冲突排查</a> </dt> <dd class="cont2"> <span><i class="view"></i>210浏览</span> <span class="collectBtn user_collection" data-id="621625" 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">5222次使用</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">4728次使用</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">4676次使用</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">4934次使用</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">4893次使用</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/621422.html" class="aBlack" title="智能体安全引领产业升级——国内AI安全产品市场深度分析">智能体安全引领产业升级——国内AI安全产品市场深度分析</a></dt> <dd> <span class="left">2026-08-21</span> <span class="right">501浏览</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> </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/417212.html"/> <input type="hidden" name="__token__" value="a0bc62237e7328d1f762468e6558a4dc" /> <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/417212.html"/> <input type="hidden" name="__token__" value="a0bc62237e7328d1f762468e6558a4dc" /> <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>