你对HTML最最最常用的标签印象深刻吗?(总结HTML中最常用的标签)

   日期:2020-05-11     浏览:115    评论:0    
核心提示:超常用标签总结,收藏一手!按功能分类基础格式表单图像音频/视频链接列表表格样式/节元信息编程基础标签示例描述用于定义文档类型,必须写在第一行!告知浏览器其自身是一个 HTML 文档,可在其中声明所用语言。如:zh代表中文,en代表英文定义文档的标题<body>定义文档的主体,包含文档的所有内容(比如文本、超链接、图像、表格和列表等等)<h1&人工智能</div><div id="content"><div class="content" id="article"><p><strong>超常用标签总结,收藏一手!</strong></p> <p></p> <h3>按功能分类</h3> <ul> <li>基础</li> <li>格式</li> <li>表单</li> <li>图像</li> <li>音频/视频</li> <li>链接</li> <li>列表</li> <li>表格</li> <li>样式/节</li> <li>元信息</li> <li>编程</li> </ul> <p></p> <h1>基础</h1> <table> <thead> <tr> <th>标签</th> <th>示例</th> <th>描述</th> </tr> </thead> <tbody> <tr> <td><code><!DOCTYPE></code></td> <td><img src="/file/upload/2020/5/rIRJ7f.png" class="aligncenter"></td> <td>用于定义文档类型,必须写在第一行!</td> </tr> <tr> <td><code><html></code></td> <td><img src="/file/upload/2020/5/RRNnia.png" class="aligncenter"></td> <td>告知浏览器其自身是一个 HTML 文档,可在其中声明所用语言。如:zh代表中文,en代表英文</td> </tr> <tr> <td><code><title></code></td> <td><img src="/file/upload/2020/5/2YFBFn.png" class="aligncenter"></td> <td>定义文档的标题</td> </tr> <tr> <td><code><body></code></td> <td><img src="/file/upload/2020/5/AFn2ai.png" class="aligncenter"></td> <td>定义文档的主体,包含文档的所有内容(比如文本、超链接、图像、表格和列表等等)</td> </tr> <tr> <td><code><h1>~<h6></code></td> <td><img src="/file/upload/2020/5/FRZnYn.png" class="aligncenter"></td> <td>定义标题,从1到6逐个变小</td> </tr> <tr> <td><code><p></code></td> <td><img src="/file/upload/2020/5/jeau2u.png" class="aligncenter"></td> <td>会自动在其前后创建一些空白</td> </tr> <tr> <td><code><br></code></td> <td><img src="/file/upload/2020/5/mYzq6f.png" class="aligncenter"></td> <td>换行,它没有结束标签</td> </tr> <tr> <td><code><!-- --></code></td> <td><img src="/file/upload/2020/5/feEzqe.png" class="aligncenter"></td> <td>用于在源代码中插入注释,注释不会显示在浏览器中</td> </tr> </tbody> </table> <h1>格式</h1> <blockquote> <p>博主在描述中直接使用了所属格式,可直观感受</p> </blockquote> <table> <thead> <tr> <th>标签</th> <th>示例</th> <th>描述</th> </tr> </thead> <tbody> <tr> <td><code><abbr></code></td> <td><img src="/file/upload/2020/5/mMrERb.png" class="aligncenter"></td> <td>u1s1,定义缩写,页面上仅显示缩写后的内容,鼠标移至其上方可显示原内容。</td> </tr> <tr> <td><code><b></code></td> <td><img src="/file/upload/2020/5/BzQRJb.png" class="aligncenter"></td> <td>定义<b>粗体</b>文本</td> </tr> <tr> <td><code><i></code></td> <td><img src="/file/upload/2020/5/UbABvu.png" class="aligncenter"></td> <td>定义<i>斜体</i>文本</td> </tr> <tr> <td><code><ins></code></td> <td><img src="/file/upload/2020/5/AnIFRz.png" class="aligncenter"></td> <td>定义已经被插入文档中的文本</td> </tr> <tr> <td><code><del></code></td> <td><img src="/file/upload/2020/5/z2qYru.png" class="aligncenter"></td> <td>定义文档中已被删除的文本,与 <ins> 标签配合使用,来描述文档中的更新和修正</td> </tr> <tr> <td><code><em></code></td> <td><img src="/file/upload/2020/5/fEfyIj.png" class="aligncenter"></td> <td>定义<em>强调</em>内容</td> </tr> <tr> <td><code><strong></code></td> <td><img src="/file/upload/2020/5/QnIRNj.png" class="aligncenter"></td> <td>定义强调内容,比<em>更<strong>突出强调</strong></td> </tr> <tr> <td><code><pre></code></td> <td><img src="/file/upload/2020/5/Fjy6je.png" class="aligncenter"></td> <td>定义预格式化的文本,文本通常会保留空格和换行符,呈现为等宽字体</td> </tr> <tr> <td><code><code></code></td> <td><img src="/file/upload/2020/5/YF3Mj2.png" class="aligncenter"></td> <td>定义计算机代码文本<code>System.out.println(“点赞+评论+关注”);</code></td> </tr> <tr> <td><code><var></code></td> <td><img src="/file/upload/2020/5/URZrYv.png" class="aligncenter"></td> <td>表示变量的名称,或者由用户提供的值,常与 <code> 和 <pre> 一起使用,如:a</td> </tr> <tr> <td><code><sup></code></td> <td><img src="/file/upload/2020/5/E3IzEj.png" class="aligncenter"></td> <td><sup>上标</sup>文本</td> </tr> <tr> <td><code><sub></code></td> <td><img src="/file/upload/2020/5/FRVn6b.png" class="aligncenter"></td> <td><sub>下标</sub>文本</td> </tr> </tbody> </table> <h1>表单</h1> <table> <thead> <tr> <th>标签</th> <th>示例</th> <th>描述</th> </tr> </thead> <tbody> <tr> <td><code><form></code></td> <td><img src="/file/upload/2020/5/Q77zqu.png" class="aligncenter"></td> <td>为用户输入创建 HTML 表单</td> </tr> <tr> <td><code><input></code></td> <td><img src="/file/upload/2020/5/imQjey.png" class="aligncenter"></td> <td>用于搜集用户信息。不同的 type 属性值,输入字段拥有很多种形式</td> </tr> <tr> <td><code><textarea></code></td> <td><img src="/file/upload/2020/5/7RNFru.png" class="aligncenter"></td> <td>定义多行的文本输入控件</td> </tr> <tr> <td><code><button></code></td> <td><img src="/file/upload/2020/5/AZrUjq.png" class="aligncenter"></td> <td>定义一个按钮</td> </tr> <tr> <td><code><select></code></td> <td><img src="/file/upload/2020/5/nymAzu.png" class="aligncenter"></td> <td>创建单选或多选菜单,即下拉列表</td> </tr> <tr> <td><code><label></code></td> <td><img src="/file/upload/2020/5/r2yQVv.png" class="aligncenter"></td> <td>为 input 元素定义标注(标记)</td> </tr> </tbody> </table> <h1>图像</h1> <table> <thead> <tr> <th>标签</th> <th>示例</th> <th>描述</th> </tr> </thead> <tbody> <tr> <td><code><img></code></td> <td><img src="/file/upload/2020/5/YRZzie.png" class="aligncenter"></td> <td>嵌入一张图片</td> </tr> <tr> <td><code><canvas></code></td> <td><img src="/file/upload/2020/5/viAnIz.png" class="aligncenter"></td> <td>定义图形,但其只是图形容器,必须使用脚本来绘制图形</td> </tr> </tbody> </table> <h1>音频/视频</h1> <table> <thead> <tr> <th>标签</th> <th>示例</th> <th>描述</th> </tr> </thead> <tbody> <tr> <td><code><audio></code></td> <td><img src="/file/upload/2020/5/VbMzA3.png" class="aligncenter"></td> <td>定义声音,文本内容为不支持该标签的信息</td> </tr> <tr> <td><code><source></code></td> <td><img src="/file/upload/2020/5/aeuiMr.png" class="aligncenter"></td> <td>为媒介元素定义媒介资源,文本内容为不支持所有标签的信息</td> </tr> <tr> <td><code><track></code></td> <td><img src="/file/upload/2020/5/bM7NZn.png" class="aligncenter"></td> <td>定义视频的字幕</td> </tr> <tr> <td><code><video></code></td> <td><img src="/file/upload/2020/5/IjQZ7z.png" class="aligncenter"></td> <td>定义一个视频</td> </tr> </tbody> </table> <h1>链接</h1> <table> <thead> <tr> <th>标签</th> <th>示例</th> <th>描述</th> </tr> </thead> <tbody> <tr> <td><code><a></code></td> <td><img src="/file/upload/2020/5/IJFJja.png" class="aligncenter"></td> <td>定义超链接</td> </tr> <tr> <td><code><link></code></td> <td><img src="/file/upload/2020/5/aA367r.png" class="aligncenter"></td> <td>定义文档与外部资源的关系</td> </tr> </tbody> </table> <h1>列表</h1> <table> <thead> <tr> <th>标签</th> <th>示例</th> <th>描述</th> </tr> </thead> <tbody> <tr> <td><code><ul></code></td> <td><img src="/file/upload/2020/5/VVnMFv.png" class="aligncenter"></td> <td>定义无序列表</td> </tr> <tr> <td><code><ol></code></td> <td><img src="/file/upload/2020/5/yYfYFf.png" class="aligncenter"></td> <td>定义有序列表</td> </tr> <tr> <td><code><li></code></td> <td><img src="/file/upload/2020/5/aeeYbe.png" class="aligncenter"></td> <td>定义列表项目</td> </tr> </tbody> </table> <h1>表格</h1> <table> <thead> <tr> <th>标签</th> <th>示例</th> <th>描述</th> </tr> </thead> <tbody> <tr> <td><code><table></code></td> <td><img src="/file/upload/2020/5/Z3URb2.png" class="aligncenter"></td> <td>定义表格</td> </tr> <tr> <td><code><caption></code></td> <td><img src="/file/upload/2020/5/eAVRFz.png" class="aligncenter"></td> <td>定义表格标题</td> </tr> <tr> <td><code><th></code></td> <td><img src="/file/upload/2020/5/Q73EBb.png" class="aligncenter"></td> <td>定义表头单元格</td> </tr> <tr> <td><code><tr></code></td> <td><img src="/file/upload/2020/5/Q73EBb.png" class="aligncenter"></td> <td>定义行</td> </tr> <tr> <td><code><td></code></td> <td><img src="/file/upload/2020/5/6j6vuy.png" class="aligncenter"></td> <td>定义单元格</td> </tr> </tbody> </table> <h1>样式/节</h1> <table> <thead> <tr> <th>标签</th> <th>示例</th> <th>描述</th> </tr> </thead> <tbody> <tr> <td><code><style></code></td> <td><img src="/file/upload/2020/5/InMZ7n.png" class="aligncenter"></td> <td>定义样式信息</td> </tr> <tr> <td><code><div></code></td> <td><img src="/file/upload/2020/5/Jvaqqa.png" class="aligncenter"></td> <td>定义文档中的分区或节,就是一个框框</td> </tr> <tr> <td><code><span></code></td> <td><img src="/file/upload/2020/5/zMrmia.png" class="aligncenter"></td> <td>用于组合文档中的行内元素</td> </tr> <tr> <td><code><header></code></td> <td><img src="/file/upload/2020/5/67bQNf.png" class="aligncenter"></td> <td>定义页眉</td> </tr> <tr> <td><code><footer></code></td> <td><img src="/file/upload/2020/5/uEJzam.png" class="aligncenter"></td> <td>定义页脚</td> </tr> </tbody> </table> <h1>元信息</h1> <table> <thead> <tr> <th>标签</th> <th>示例</th> <th>描述</th> </tr> </thead> <tbody> <tr> <td><code><head></code></td> <td><img src="/file/upload/2020/5/JFRFZz.png" class="aligncenter"></td> <td>定义关于文档的信息</td> </tr> <tr> <td><code><meta></code></td> <td><img src="/file/upload/2020/5/eI3I7b.png" class="aligncenter"></td> <td>提供有关页面的元信息,如编码</td> </tr> </tbody> </table> <h1>编程</h1> <table> <thead> <tr> <th>标签</th> <th>示例</th> <th>描述</th> </tr> </thead> <tbody> <tr> <td><code><script></code></td> <td><img src="/file/upload/2020/5/nURZ7b.png" class="aligncenter"></td> <td>定义客户端脚本,比如 JavaScript</td> </tr> <tr> <td><code><object></code></td> <td><img src="/file/upload/2020/5/E7ZBRj.png" class="aligncenter"></td> <td>定义一个嵌入的对象</td> </tr> <tr> <td><code><param></code></td> <td><img src="/file/upload/2020/5/ZNbUf2.png" class="aligncenter"></td> <td>定义对象的参数</td> </tr> </tbody> </table> <blockquote> <p>上述是博主个人认为较为常用的标签,如有修改意见可在评论区回复,谢谢,嘻嘻</p> </blockquote></div> </div> <div class="b20 c_b"> </div> <div class="award"><div onclick="Go('https://www.youqizhuangbei.com/member/award.php?mid=21&itemid=14171');">打赏</div></div> <div class="b20"> </div>  本文转载自:网络 <div class="b20"> 所有权利归属于原作者,如文章来源标示错误或侵犯了您的权利请联系微信13520258486 </div> <div class="b20"> </div> <div class="head-txt"><span><a href="https://www.youqizhuangbei.com/news/wulianwangwenzhang-c111-1.html">更多<i>></i></a></span><strong>最近资讯中心</strong></div> <div class="related"> <table width="100%"> <tr><td width="50%"><a href="https://www.youqizhuangbei.com/news/show-14170.html" title="一段JavaScript代码是如何执行的">• 一段JavaScript代码是如何执行的</a></td> <td width="50%"><a href="https://www.youqizhuangbei.com/news/show-14169.html" title="vue-quill-editor视频上传,图片上传到服务器模块,用video标签替换iframe">• vue-quill-editor视频上传,图片上传到服务器模</a></td> </tr><tr><td width="50%"><a href="https://www.youqizhuangbei.com/news/show-14168.html" title="2020大厂前端面试之vue专题(一)">• 2020大厂前端面试之vue专题(一)</a></td> <td width="50%"><a href="https://www.youqizhuangbei.com/news/show-14167.html" title="Java面试之Get请求和Post请求">• Java面试之Get请求和Post请求</a></td> </tr><tr><td width="50%"><a href="https://www.youqizhuangbei.com/news/show-14165.html" title="MySQL的下载">• MySQL的下载</a></td> <td width="50%"><a href="https://www.youqizhuangbei.com/news/show-14164.html" title="webpack构建工具配置和常用插件总结">• webpack构建工具配置和常用插件总结</a></td> </tr></table> <table width="100%"> <tr><td width="50%"><a href="https://www.youqizhuangbei.com/news/show-35506.html" title="Esp8266天猫精灵_RGB灯_非点灯平台">• Esp8266天猫精灵_RGB灯_非点灯平台</a></td> <td width="50%"><a href="https://www.youqizhuangbei.com/news/show-35505.html" title="STM32F103 串口1和串口3对发数据 配合蓝牙模块 实现手机和单片机的简单通信demo">• STM32F103 串口1和串口3对发数据 配合蓝牙模块 </a></td> </tr><tr><td width="50%"><a href="https://www.youqizhuangbei.com/news/show-35504.html" title="TMS570学习【1】了解什么是TMS570">• TMS570学习【1】了解什么是TMS570</a></td> <td width="50%"><a href="https://www.youqizhuangbei.com/news/show-35503.html" title="新闻稿 | Qt公司收购froglogic公司以巩固市场领导者地位">• 新闻稿 | Qt公司收购froglogic公司以巩固市场领</a></td> </tr><tr><td width="50%"><a href="https://www.youqizhuangbei.com/news/show-35502.html" title="[Java]SpringBoot2整合mqtt服务器EMQ实现消息订阅发布入库(二)">• [Java]SpringBoot2整合mqtt服务器EMQ实现消息订</a></td> <td width="50%"><a href="https://www.youqizhuangbei.com/news/show-35501.html" title="苹果群控投屏同步操作原理及运用的平台APP分享">• 苹果群控投屏同步操作原理及运用的平台APP分享</a></td> </tr></table> </div> <div class="b20"> </div> <div class="head-txt"><span><a href="https://www.youqizhuangbei.com/news/wulianwangwenzhang-c111-1.html">更多<i>></i></a></span><strong>最新资讯中心</strong></div> <div class="related"><table width="100%"> <tr><td width="50%"><a href="https://www.youqizhuangbei.com/news/show-35506.html" title="Esp8266天猫精灵_RGB灯_非点灯平台">• Esp8266天猫精灵_RGB灯_非点灯平台</a></td> <td width="50%"><a href="https://www.youqizhuangbei.com/news/show-35505.html" title="STM32F103 串口1和串口3对发数据 配合蓝牙模块 实现手机和单片机的简单通信demo">• STM32F103 串口1和串口3对发数据 配合蓝牙模块 </a></td> </tr><tr><td width="50%"><a href="https://www.youqizhuangbei.com/news/show-35504.html" title="TMS570学习【1】了解什么是TMS570">• TMS570学习【1】了解什么是TMS570</a></td> <td width="50%"><a href="https://www.youqizhuangbei.com/news/show-35503.html" title="新闻稿 | Qt公司收购froglogic公司以巩固市场领导者地位">• 新闻稿 | Qt公司收购froglogic公司以巩固市场领</a></td> </tr><tr><td width="50%"><a href="https://www.youqizhuangbei.com/news/show-35502.html" title="[Java]SpringBoot2整合mqtt服务器EMQ实现消息订阅发布入库(二)">• [Java]SpringBoot2整合mqtt服务器EMQ实现消息订</a></td> <td width="50%"><a href="https://www.youqizhuangbei.com/news/show-35501.html" title="苹果群控投屏同步操作原理及运用的平台APP分享">• 苹果群控投屏同步操作原理及运用的平台APP分享</a></td> </tr><tr><td width="50%"><a href="https://www.youqizhuangbei.com/news/show-35500.html" title="STM32查询式按键输入[直接用寄存器]">• STM32查询式按键输入[直接用寄存器]</a></td> <td width="50%"><a href="https://www.youqizhuangbei.com/news/show-35499.html" title="Ubuntu系统 USB设备端口绑定">• Ubuntu系统 USB设备端口绑定</a></td> </tr><tr><td width="50%"><a href="https://www.youqizhuangbei.com/news/show-35498.html" title="2021-04-14 第四次 按键输入实验">• 2021-04-14 第四次 按键输入实验</a></td> <td width="50%"><a href="https://www.youqizhuangbei.com/news/show-35497.html" title="Flutter扫码功能完美实现">• Flutter扫码功能完美实现</a></td> </tr></table> </div> <div class="b20"> </div> <div id="comment_div" style="display:;"> <div class="head-txt"><span><a href="https://www.youqizhuangbei.com/comment/index-htm-mid-21-itemid-14171.html"><b id="comment_count" class="px16 f_red">0</b> 条</a></span><strong>相关评论</strong></div> <div class="c_b" id="comment_main"><div></div></div> </div> <script type="text/javascript" src="https://www.youqizhuangbei.com/file/script/comment.js"></script> <br/> </div> <div class="m3r"> <div class="head-sub"><strong>推荐图文</strong></div> <div class="list-thumb"><table width="100%"> </table> </div> <div class="head-sub mt20"><strong>推荐资讯中心</strong></div> <div class="list-txt"><ul> </ul> </div> <div class="head-sub mt20"><strong>点击排行</strong></div> <div class="list-rank"><ul> </ul></div> <div class="head-sub mt20"><strong>最新信息</strong></div> <div class="list-rank"><ul> <li><em>1</em><a href="https://www.youqizhuangbei.com/sell/show-3.html" title="北京傲云欣欣科技公司专业提供中高压变频器维修电气设备维修">北京傲云欣欣科技公司专业提供中高压变频器维修</a></li> <li><em>2</em><a href="https://www.youqizhuangbei.com/sell/show-70.html" title="太原德力西高压变频器维修">太原德力西高压变频器维修</a></li> <li><em>3</em><a href="https://www.youqizhuangbei.com/sell/show-56.html" title="AMB安邦信高压变频器维修中降低设备故障频次的方法">AMB安邦信高压变频器维修中降低设备故障频次的</a></li> <li><i>4</i><a href="https://www.youqizhuangbei.com/sell/show-51.html" title="石家庄高压变频器维修请找北京傲云电气">石家庄高压变频器维修请找北京傲云电气</a></li> <li><i>5</i><a href="https://www.youqizhuangbei.com/sell/show-21.html" title="AMB安邦信高压变频器维修">AMB安邦信高压变频器维修</a></li> <li><i>6</i><a href="https://www.youqizhuangbei.com/sell/show-65.html" title="Samcovm三垦高压变频器维修中一些小技巧">Samcovm三垦高压变频器维修中一些小技巧</a></li> <li><i>7</i><a href="https://www.youqizhuangbei.com/sell/show-64.html" title="ABB传动ACS6000/ACS800维修中的故障分析方法">ABB传动ACS6000/ACS800维修中的故障分析方法</a></li> <li><i>8</i><a href="https://www.youqizhuangbei.com/sell/show-67.html" title="包头石家庄ABB高压变频器维修">包头石家庄ABB高压变频器维修</a></li> <li><i>9</i><a href="https://www.youqizhuangbei.com/sell/show-45.html" title="攀枝花陕西西门子罗宾康高压变频器维修厂家">攀枝花陕西西门子罗宾康高压变频器维修厂家</a></li> </ul></div> </div> </div> <div class="c_b"></div> </div> <script type="text/javascript" src="https://www.youqizhuangbei.com/file/script/content.js"></script><div class="clear"> </div> <div class="other_item"> <div class="copyrightbar"> <div class="wrapper"> <dl class="fore1"> <dt>新手指南</dt> <dd> <div><a rel="nofollow" target="_blank" href="https://www.youqizhuangbei.com/member/register.php">注册新用户</a></div> <div><a rel="nofollow" target="_blank" href="">操作指南</a></div> <div><a rel="nofollow" target="_blank" href="">常见问题</a></div> </dd> </dl> <dl class="fore2"> <dt>采购商服务</dt> <dd> <div><a rel="nofollow" target="_blank" href="https://www.youqizhuangbei.com/sell/">找产品</a></div> <div><a rel="nofollow" target="_blank" href="https://www.youqizhuangbei.com/company/">找公司</a></div> <div><a rel="nofollow" target="_blank" href="">找采购</a></div> <div><a rel="nofollow" target="_blank" href="https://www.youqizhuangbei.com/news/">看资讯</a></div> </dd> </dl> <dl class="fore3"> <dt>供应商服务</dt> <dd> <div><a rel="nofollow" target="_blank" href="https://www.youqizhuangbei.com/member//home.php">企业商铺</a></div> <div><a rel="nofollow" target="_blank" href="https://www.youqizhuangbei.com/member//grade.php">VIP服务</a></div> <div><a rel="nofollow" target="_blank" href="https://www.youqizhuangbei.com/member//validate.php">认证服务</a></div> <div><a rel="nofollow" target="_blank" href="https://www.youqizhuangbei.com/spread/">推广服务</a></div> </dd> </dl> <dl class="fore4"> <dt>交易安全</dt> <dd> <div><a target="_blank" href="">买家防骗</a></div> <div><a target="_blank" href="">卖家防骗</a></div> <div><a rel="nofollow" href="javascript:SendReport();">投诉举报</a></div> </dd> </dl> <dl class="fore5"> <dt>关注我们</dt> <dd> <div>手机网站: <a target="_blank" href="https://www.youqizhuangbei.com/mobile/mobile.php"></a></div> <div>新浪微博: <a target="_blank" href="http://" rel="nofollow"></a></div> <div>微信关注: </div> <div style="margin-top: 5px;"> <a target="_blank" href="//shang.qq.com/wpa/qunwpa?idkey=5fd78221597e88a4af3e2c8512a61d5f1f8dc535171ea7773562452f9042dafd"><img border="0" src="//pub.idqqimg.com/wpa/images/group.png" alt="" title=""></a> </div> </dd> </dl> <div class="hotline"> <p class="phone">13520258486</p> <p><span class="serviceTime-normal" style="">周一至周五 9:00-18:00</span> <br>(其他时间联系在线客服)</p> <a rel="nofollow" class="btn-line-primary" href="https://www.youqizhuangbei.com/about/contact.html" target="_blank">24小时在线客服</a> </div> <span class="clear"></span> </div> <div class="wrapper mt20" id="other_item"> <div id="footer"> <div class="links" style="font-size: 14px;margin-bottom: 10px;"> 产品按字母分类: <span style="color: #666;"><a href="https://www.youqizhuangbei.com/sitemap/index.php?mid=5&letter=a" target="_blank">a</a></span><span style="color: #666;"><a href="https://www.youqizhuangbei.com/sitemap/index.php?mid=5&letter=b" target="_blank">b</a></span><span style="color: #666;"><a href="https://www.youqizhuangbei.com/sitemap/index.php?mid=5&letter=c" target="_blank">c</a></span><span style="color: #666;"><a href="https://www.youqizhuangbei.com/sitemap/index.php?mid=5&letter=d" target="_blank">d</a></span><span style="color: #666;"><a href="https://www.youqizhuangbei.com/sitemap/index.php?mid=5&letter=e" target="_blank">e</a></span><span style="color: #666;"><a href="https://www.youqizhuangbei.com/sitemap/index.php?mid=5&letter=f" target="_blank">f</a></span><span style="color: #666;"><a href="https://www.youqizhuangbei.com/sitemap/index.php?mid=5&letter=g" target="_blank">g</a></span><span style="color: #666;"><a href="https://www.youqizhuangbei.com/sitemap/index.php?mid=5&letter=h" target="_blank">h</a></span><span style="color: #666;"><a href="https://www.youqizhuangbei.com/sitemap/index.php?mid=5&letter=i" target="_blank">i</a></span><span style="color: #666;"><a href="https://www.youqizhuangbei.com/sitemap/index.php?mid=5&letter=j" target="_blank">j</a></span><span style="color: #666;"><a href="https://www.youqizhuangbei.com/sitemap/index.php?mid=5&letter=k" target="_blank">k</a></span><span style="color: #666;"><a href="https://www.youqizhuangbei.com/sitemap/index.php?mid=5&letter=l" target="_blank">l</a></span><span style="color: #666;"><a href="https://www.youqizhuangbei.com/sitemap/index.php?mid=5&letter=m" target="_blank">m</a></span><span style="color: #666;"><a href="https://www.youqizhuangbei.com/sitemap/index.php?mid=5&letter=n" target="_blank">n</a></span><span style="color: #666;"><a href="https://www.youqizhuangbei.com/sitemap/index.php?mid=5&letter=o" target="_blank">o</a></span><span style="color: #666;"><a href="https://www.youqizhuangbei.com/sitemap/index.php?mid=5&letter=p" target="_blank">p</a></span><span style="color: #666;"><a href="https://www.youqizhuangbei.com/sitemap/index.php?mid=5&letter=q" target="_blank">q</a></span><span style="color: #666;"><a href="https://www.youqizhuangbei.com/sitemap/index.php?mid=5&letter=r" target="_blank">r</a></span><span style="color: #666;"><a href="https://www.youqizhuangbei.com/sitemap/index.php?mid=5&letter=s" target="_blank">s</a></span><span style="color: #666;"><a href="https://www.youqizhuangbei.com/sitemap/index.php?mid=5&letter=t" target="_blank">t</a></span><span style="color: #666;"><a href="https://www.youqizhuangbei.com/sitemap/index.php?mid=5&letter=u" target="_blank">u</a></span><span style="color: #666;"><a href="https://www.youqizhuangbei.com/sitemap/index.php?mid=5&letter=v" target="_blank">v</a></span><span style="color: #666;"><a href="https://www.youqizhuangbei.com/sitemap/index.php?mid=5&letter=w" target="_blank">w</a></span><span style="color: #666;"><a href="https://www.youqizhuangbei.com/sitemap/index.php?mid=5&letter=x" target="_blank">x</a></span><span style="color: #666;"><a href="https://www.youqizhuangbei.com/sitemap/index.php?mid=5&letter=y" target="_blank">y</a></span><span style="color: #666;"><a href="https://www.youqizhuangbei.com/sitemap/index.php?mid=5&letter=z" target="_blank">z</a></span> </div> <div class="links"> <a href="https://www.youqizhuangbei.com/about/index.html">关于我们</a> | <a href="https://www.youqizhuangbei.com/about/contact.html">联系方式</a> | <a href="https://www.youqizhuangbei.com/about/agreement.html">使用协议</a> | <a href="https://www.youqizhuangbei.com/about/copyright.html">版权隐私</a> | <a href="https://www.youqizhuangbei.com/sitemap/">网站地图</a> | <a href="https://www.youqizhuangbei.com/spread/">排名推广</a> | <a href="https://www.youqizhuangbei.com/ad/">广告服务</a> | <a href="https://www.youqizhuangbei.com/gift/" target="_blank" rel="nofollow">积分商城</a> | <a href="javascript:SendReport();" rel="nofollow">违规举报</a> </div> <div class="copyright"> <div id="copyright">(c)2008-2023 湖北傲云电气有限公司 All Rights Reserved<script>var _hmt = _hmt || [];(function() {var hm = document.createElement("script");hm.src = "https://hm.baidu.com/hm.js?20195b23529f03df5cb2789a744df859";var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s);})();</script></div> <div><a href="http://www.miibeian.gov.cn" target="_blank" rel="nofollow">鄂ICP备2020021666号-11</a></div></div> <div class="authentication"> <div class="authentication_bg"> <a rel="nofollow" target="_blank" class="cert-1" href="#" title="网络警察"></a> <a rel="nofollow" target="_blank" class="cert-2" href="#" title="网警备案"></a> <a rel="nofollow" target="_blank" class="cert-3" href="#" title="网络工商"></a> <a rel="nofollow" target="_blank" class="cert-4" href="#" title="浙江省网站信用联盟"></a> <a rel="nofollow" target="_blank" class="cert-5" href="#" title="可信网站"></a> <a rel="nofollow" target="_blank" class="cert-6" href="/" title="违法和不良信息举报中心"></a> <a rel="nofollow" target="_blank" class="cert-7" href="/" title="违法和不良信息举报中心APP下载"></a> </div> </div> </div> </div> </div> </div> <div class="feedBackWidget"> <div class="ronline"><a href="//wpa.qq.com/msgrd?v=3&uin=&site=qq&menu=yes" target="_blank" title=""></a></div> <div class="rweixin"><a href="javascript:Dqrcode();"></a></div> <div class="feedback"><a href="javascript:SendReport();"></a></div> <div class="back2top" style="display: none;"><a href="javascript:void(0);" title="返回顶部"> </a></div> </div><script type="text/javascript"> //全站悬浮右侧 $('.guess').scrollToFixed({ marginTop: $('.small-goods').outerHeight(true) - 345, limit: function() { var limit = $('.other_item').offset().top ; return limit; }, minWidth: 1000, zIndex: 999, fixed: function() { }, dontCheckForPositionFixedSupport: true }); //右侧到位自动隐藏 function changeScreen() { var itemTop = document.getElementById("other_item").offsetTop; if ($(document).scrollTop() > itemTop - 600) { $(".guess").hide(); } else if ($(window).width() < 1200) { $(".guess").hide(); } else { $(".guess").show(); } } $(window).scroll(function() { changeScreen(); }); $(window).resize(function(e) { changeScreen(); }); </script> <script type="text/javascript" src="https://www.youqizhuangbei.com/skin/st03lanskin/js/myjs.js"></script> <script type="text/javascript" src="https://www.youqizhuangbei.com/skin/st03lanskin/js/topso.js"></script> <script type="text/javascript" src="https://www.youqizhuangbei.com/skin/st03lanskin/js/scrolltofixed.js"></script> <script type="text/javascript"> </script> <script> var _hmt = _hmt || []; (function() { var hm = document.createElement("script"); hm.src = "https://hm.baidu.com/hm.js?d7f1c93b824c5ee2887566c40d0984af"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })(); </script> <script> (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })(); </script> </body> </html>