当前位置:网站首页 > 百度优化 > 正文

HTML文档常用标记有哪些?如何正确使用它们?

游客游客 2025-06-08 11:54:01 2

HTML文档常用标记有哪些

在构建网页的过程中,HTML(超文本标记语言)扮演着至关重要的角色。它是网页的基础骨架,通过使用各种标记(tags),开发者能够组织内容、定义结构,以及赋予网页特定的格式。本文旨在全面介绍HTML文档中常用的一些标记,帮助初学者和专业人士更好地理解和应用这些基础元素。

HTML文档结构标记

任何HTML文档的起点都是``声明,它告诉浏览器这个文档是HTML5类型。接下来是``标签,它包裹整个HTML文档的内容。

根元素

```html

```

HTML文档常用标记有哪些?如何正确使用它们?

文档头部标记

在``部分,我们通常会放置文档的元数据(metadata),如字符编码声明、网页标题、链接到CSS样式表等。``用于指定字符编码,而``用于定义网页的标题。</p> <p style="text-align: center;"><img alt="HTML文档常用标记有哪些?如何正确使用它们?" title="HTML文档常用标记有哪些?如何正确使用它们?" src="https://www.0717sq.com/zb_users/upload/2025/06/20250608034039_42736.jpeg"/></p> <h2>标题和段落</h2> <p>HTML文档中最常见的内容标记是标题和段落。标题从`<h1>`到`<h6>`逐渐降低重要性,段落则用`<p>`标记。</p> <p><strong>标题</strong></p> <p>```html</p> <p><h1>主标题</h1></p> <h2>次级标题</h2> <p><!--更多标题层级--></p> <p>```</p> <p><strong>段落</strong></p> <p>```html</p> <p><p>这是一个段落的文本。</p></p> <p>```</p> <p style="text-align: center;"><img alt="HTML文档常用标记有哪些?如何正确使用它们?" title="HTML文档常用标记有哪些?如何正确使用它们?" src="https://www.0717sq.com/zb_users/upload/2025/06/20250608034040_34843.jpeg"/></p> <h2>链接和图像</h2> <p>链接是通过`<a>`标签实现的,它允许用户点击文本跳转到其他页面或位置。图像则通过`<img>`标签引入,并需要使用`src`属性指定图片的路径。</p> <p><strong>链接</strong></p> <p>```html</p> <p><ahref="https://www.baidu.com"rel="nofollownoopener">访问百度</a></p> <p>```</p> <p><strong>图像</strong></p> <p>```html</p> <p><img alt="HTML文档常用标记有哪些?如何正确使用它们?" title="HTML文档常用标记有哪些?如何正确使用它们?" src="image.jpg"/></p> <p>```</p> <h2>列表</h2> <p>列表分为无序列表(`<ul>`)和有序列表(`<ol>`),列表项则使用`<li>`表示。</p> <p><strong>无序列表</strong></p> <p>```html</p> <p><ul></p> <p><li>列表项1</li></p> <p><li>列表项2</li></p> <p><!--更多列表项--></p> <p></ul></p> <p>```</p> <p><strong>有序列表</strong></p> <p>```html</p> <p><ol></p> <p><li>第一步</li></p> <p><li>第二步</li></p> <p><!--更多步骤--></p> <p></ol></p> <p>```</p> <h2>表格</h2> <p>表格用于展示数据,主要由`<table>`、`<tr>`(表格行)、`<th>`(表头单元格)、`<td>`(表格单元格)等标签组成。</p> <p>```html</p> <p><tableborder="1"></p> <p><tr></p> <p><th>姓名</th></p> <p><th>年龄</th></p> <p></tr></p> <p><tr></p> <p><td>张三</td></p> <p><td>28</td></p> <p></tr></p> <p><!--更多行和数据--></p> <p></table></p> <p>```</p> <h2>表单</h2> <p>表单`<form>`用于收集用户输入,包含输入字段`<input>`、文本域`<textarea>`、提交按钮`<button>`等。</p> <p>```html</p> <p><formaction="/submit"method="post"></p> <p><labelfor="name">姓名:</label></p> <p><inputtype="text"id="name"name="name"></p> <p><inputtype="submit"value="提交"></p> <p></form></p> <p>```</p> <h2>其他常用标记</h2> <p>除了上述标记外,还有许多其他有用的标签,如:</p> <p>`<div>`:用于定义文档中的分区或节(division)。</p> <p>`<span>`:用于内联文本的一部分。</p> <p>`<script>`:用于嵌入或引用可执行脚本。</p> <p>`<style>`:用于内嵌CSS样式。</p> <p>在实际开发中,合理运用这些标记能够帮助我们构建功能丰富、结构清晰的网页。为了优化用户体验和搜索引擎表现,开发者还需遵守SEO最佳实践,例如使用适当的语义化标签和对内容进行结构化布局。</p> <p>HTML标记是构建网页不可或缺的一部分。掌握这些常用标记,对于任何希望在网页设计与开发领域深造的人来说都是基础且重要的一步。通过学习和实践,每个人都可以逐步提升自己的技能,并创造出既美观又功能性强的网页作品。</p> <p>综上所述,HTML文档的基础标记涵盖了结构、内容展示、用户交互等多个方面。通过熟练使用这些标记,可以有效地组织网页内容,并为用户提供丰富的浏览体验。随着技术的发展,HTML也在不断进化,因此不断学习新的标记和规范也是Web开发者的必要任务。</p> <div style="background-color: #fcf8e3;border-color: #faebcc;color: #f39c12;padding: 15px;margin-bottom: 17px;border: 1px solid transparent;border-top-color: transparent;border-right-color: transparent;border-bottom-color: transparent;border-left-color: transparent;border-radius: 3px;"> <p>版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至 3561739510@qq.com 举报,一经查实,本站将立刻删除。</p> </div> <p>转载请注明来自<a href="https://www.0717sq.com/" title="速七seo"><strong>速七seo</strong></a>,本文标题:<a href="https://www.0717sq.com/article-10508-1.html" title="HTML文档常用标记有哪些?如何正确使用它们?">《HTML文档常用标记有哪些?如何正确使用它们?》</a><p> <p class="info-tag">标签:</p> <div class="info-zan ta-c"> <a href="javascript:;" class="share"><i class="iconfont icon-fenxiang"></i></a> <a href="javascript:;" class="sponsor"><i class="iconfont icon-redpacket"></i></a> </div> </div> </div> </div> <div class="info-next tx-box mb15"> <ul class="clearfix"> <li class="fl">上一篇: <a href="https://www.0717sq.com/article-10546-1.html" title="小红书剪辑笔记怎么做?如何打造受欢迎的视频内容?">小红书剪辑笔记怎么做?如何打造受欢迎的视频内容?</a> </li> <li class="fr">下一篇:没有了 </li> </ul> </div> <div class="info-close tx-box mb15"> <h2 class="tx-title">猜你喜欢</h2> <div class="pd15"> <ul class="row"> <li class="col-6 col-m-12"> <a href="https://www.0717sq.com/article-10508-1.html" title="HTML文档常用标记有哪些?如何正确使用它们?" class="img-x20"><img src="https://www.0717sq.com/zb_users/upload/2025/06/20250608034039_71757.jpeg" alt="HTML文档常用标记有哪些?如何正确使用它们?"></a> <h3><a href="https://www.0717sq.com/article-10508-1.html" title="HTML文档常用标记有哪些?如何正确使用它们?">HTML文档常用标记有哪些?如何正确使用它们?</a></h3> </li> <li class="col-6 col-m-12"> <a href="https://www.0717sq.com/article-10509-1.html" title="网站怎么分析竞争?有哪些有效的竞争分析方法?" class="img-x20"><img src="https://www.0717sq.com/zb_users/upload/2025/06/20250608034048_72709.jpeg" alt="网站怎么分析竞争?有哪些有效的竞争分析方法?"></a> <h3><a href="https://www.0717sq.com/article-10509-1.html" title="网站怎么分析竞争?有哪些有效的竞争分析方法?">网站怎么分析竞争?有哪些有效的竞争分析方法?</a></h3> </li> <li class="col-6 col-m-12"> <a href="https://www.0717sq.com/article-10194-1.html" title="如何有效推广你的Polo衫网站?常见策略有哪些?" class="img-x20"><img src="https://www.0717sq.com/zb_users/upload/2025/06/20250604174105_46326.jpeg" alt="如何有效推广你的Polo衫网站?常见策略有哪些?"></a> <h3><a href="https://www.0717sq.com/article-10194-1.html" title="如何有效推广你的Polo衫网站?常见策略有哪些?">如何有效推广你的Polo衫网站?常见策略有哪些?</a></h3> </li> <li class="col-6 col-m-12"> <a href="https://www.0717sq.com/article-10198-1.html" title="期中试卷网站分析怎么写?分析报告应包含哪些关键点?" class="img-x20"><img src="https://www.0717sq.com/zb_users/upload/2025/06/20250604174125_64295.jpeg" alt="期中试卷网站分析怎么写?分析报告应包含哪些关键点?"></a> <h3><a href="https://www.0717sq.com/article-10198-1.html" title="期中试卷网站分析怎么写?分析报告应包含哪些关键点?">期中试卷网站分析怎么写?分析报告应包含哪些关键点?</a></h3> </li> </ul> </div> </div> </div> </div> <div class="box-left"> <dl> <ul class="side-menu"> <li><a title="地方SEO" href="https://www.0717sq.com/DFSEO.html">地方SEO</a></li> <li><a title="百度优化" href="https://www.0717sq.com/BDYH.html">百度优化</a></li> <li><a title="SEO优化" href="https://www.0717sq.com/SEOYH.html">SEO优化</a></li> <li><a title="SEO技术" href="https://www.0717sq.com/SEOJS.html">SEO技术</a></li> <li><a title="SEO服务" href="https://www.0717sq.com/SEOFW.html">SEO服务</a></li> <li><a title="抖音推广" href="https://www.0717sq.com/DYTG.html">抖音推广</a></li> <li><a title="网络推广" href="https://www.0717sq.com/WLTG.html">网络推广</a></li> <li><a title="SEO动态" href="https://www.0717sq.com/SEODT.html">SEO动态</a></li> </ul> </dl> <dl> <dt>关于我</dt> <dd> <!--<p class="mb10">关注微信送SEO教程</p>--> <p class="mb10 img-d"><img src="https://www.0717sq.com/zb_users/theme/tx_three/include/weixin.png"></p> <ul class="side-contact row"> <li class="col-8 col-m-8"><a href="http://wpa.qq.com/msgrd?v=3&uin=1561571580&site=qq&menu=yes" target="_blank" rel="nofollow"><i class="iconfont icon-qq2"></i> <p>QQ</p></a></li> <li class="col-8 col-m-8"><a href="#" target="_blank" rel="nofollow"><i class="iconfont icon-weibo1"></i> <p>微博</p></a></li> <li class="col-8 col-m-8"><a href="mailto:@1561571580@qq.com" target="_blank" rel="nofollow"><i class="iconfont icon-mail"></i> <p>邮箱</p></a></li> </ul> </dd> </dl> </div> <div class="side-right"> <dl class="function" id="divSearchPanel"> <dt class="function_t">搜索</dt><dd class="function_c"> <div><form name="search" method="post" action="https://www.0717sq.com/zb_system/cmd.php?act=search"><input type="text" name="q" size="11" /> <input type="submit" value="搜索" /></form></div> </dd> </dl> <dl class="function" id="divPrevious"> <dt class="function_t">最新文章</dt><dd class="function_c"> <ul><li><a title="某个网站的关键词怎么找?如何有效进行SEO优化?" href="https://www.0717sq.com/article-10166-1.html">某个网站的关键词怎么找?如何有效进行SEO优化?</a></li> <li><a title="剪辑视频时不小心删除了抖音号怎么恢复?" href="https://www.0717sq.com/article-10320-1.html">剪辑视频时不小心删除了抖音号怎么恢复?</a></li> <li><a title="品牌网站网页分析怎么做?如何通过分析提升用户体验?" href="https://www.0717sq.com/article-10184-1.html">品牌网站网页分析怎么做?如何通过分析提升用户体验?</a></li> <li><a title="小红书剪辑效果怎么做的?视频编辑技巧有哪些?" href="https://www.0717sq.com/article-10321-1.html">小红书剪辑效果怎么做的?视频编辑技巧有哪些?</a></li> <li><a title="网站推广技巧分析怎么写?有效提升SEO的策略有哪些?" href="https://www.0717sq.com/article-10133-1.html">网站推广技巧分析怎么写?有效提升SEO的策略有哪些?</a></li> <li><a title="抖音剧情无缝剪辑软件怎么用?操作步骤和常见问题解答?" href="https://www.0717sq.com/article-10322-1.html">抖音剧情无缝剪辑软件怎么用?操作步骤和常见问题解答?</a></li> <li><a title="HTML表格表头命令的属性有哪些?如何正确使用它们?" href="https://www.0717sq.com/article-10189-1.html">HTML表格表头命令的属性有哪些?如何正确使用它们?</a></li> <li><a title="怎么剪辑视频庞博文用抖音?抖音视频剪辑技巧有哪些?" href="https://www.0717sq.com/article-10323-1.html">怎么剪辑视频庞博文用抖音?抖音视频剪辑技巧有哪些?</a></li> <li><a title="找工作网站事件分析怎么写?分析步骤和常见问题解答?" href="https://www.0717sq.com/article-10129-1.html">找工作网站事件分析怎么写?分析步骤和常见问题解答?</a></li> <li><a title="带货短视频怎么优化内容?有哪些技巧可以提高转化率?" href="https://www.0717sq.com/article-10324-1.html">带货短视频怎么优化内容?有哪些技巧可以提高转化率?</a></li> </ul> </dd> </dl> <dl class="function" id="divhottag"> <dt class="function_t">热门tag</dt><dd class="function_c"> <div><a href="https://www.0717sq.com/view-26-1.html" title="抖音">抖音</a><a href="https://www.0717sq.com/view-1-1.html" title="优化">优化</a><a href="https://www.0717sq.com/view-52-1.html" title="SEO优化">SEO优化</a><a href="https://www.0717sq.com/view-7-1.html" title="网站优化">网站优化</a><a href="https://www.0717sq.com/view-844-1.html" title="快手">快手</a><a href="https://www.0717sq.com/view-13-1.html" title="百度优化">百度优化</a><a href="https://www.0717sq.com/view-16-1.html" title="抖音小店">抖音小店</a><a href="https://www.0717sq.com/view-45-1.html" title="关键词优化">关键词优化</a><a href="https://www.0717sq.com/view-3-1.html" title="网站排名">网站排名</a><a href="https://www.0717sq.com/view-113-1.html" title="小红书">小红书</a><a href="https://www.0717sq.com/view-458-1.html" title="网站建设">网站建设</a><a href="https://www.0717sq.com/view-4-1.html" title="排名">排名</a><a href="https://www.0717sq.com/view-2678-1.html" title="SEO">SEO</a><a href="https://www.0717sq.com/view-67-1.html" title="关键词">关键词</a><a href="https://www.0717sq.com/view-2-1.html" title="关键词排名">关键词排名</a><a href="https://www.0717sq.com/view-53-1.html" title="百度">百度</a><a href="https://www.0717sq.com/view-209-1.html" title="抖音seo">抖音seo</a><a href="https://www.0717sq.com/view-11-1.html" title="网络推广">网络推广</a><a href="https://www.0717sq.com/view-9-1.html" title="SEO技术">SEO技术</a><a href="https://www.0717sq.com/view-10-1.html" title="搜索引擎">搜索引擎</a></div> </dd> </dl> <dl class="function" id="divtxhotlist"> <dt class="function_t">热门文章</dt><dd class="function_c"> <ul><li><a href="https://www.0717sq.com/article-9726-1.html" title="如何确定网站搜索优化的价格?">如何确定网站搜索优化的价格?</a></li><li><a href="https://www.0717sq.com/article-9733-1.html" title="网站优化效果如何检测?检测优化效果的方法有哪些?">网站优化效果如何检测?检测优化效果的方法有哪些?</a></li><li><a href="https://www.0717sq.com/article-10224-1.html" title="鞍山营销网站建设怎么样?如何选择合适的网站建设服务?">鞍山营销网站建设怎么样?如何选择合适的网站建设服务?</a></li><li><a href="https://www.0717sq.com/article-9723-1.html" title="谷歌竞价优化软件是什么?有哪些推荐?">谷歌竞价优化软件是什么?有哪些推荐?</a></li><li><a href="https://www.0717sq.com/article-10197-1.html" title="网站如何在抖音上推广呢?有哪些有效策略和常见问题解答?">网站如何在抖音上推广呢?有哪些有效策略和常见问题解答?</a></li><li><a href="https://www.0717sq.com/article-10200-1.html" title="家政服务网站经营模式分析怎么写?如何优化用户体验和提高转化率?">家政服务网站经营模式分析怎么写?如何优化用户体验和提高转化率?</a></li><li><a href="https://www.0717sq.com/article-10217-1.html" title="HTML网页开发用哪些软件?如何选择合适的工具?">HTML网页开发用哪些软件?如何选择合适的工具?</a></li><li><a href="https://www.0717sq.com/article-10193-1.html" title="权威分析报告网站怎么写?如何确保内容的权威性和准确性?">权威分析报告网站怎么写?如何确保内容的权威性和准确性?</a></li><li><a href="https://www.0717sq.com/article-10221-1.html" title="各大视频网站缺点分析怎么写?如何克服这些不足?">各大视频网站缺点分析怎么写?如何克服这些不足?</a></li><li><a href="https://www.0717sq.com/article-10135-1.html" title="个人网站改版套餐怎么改?改版后有哪些常见问题需要解决?">个人网站改版套餐怎么改?改版后有哪些常见问题需要解决?</a></li><li><a href="https://www.0717sq.com/article-10172-1.html" title="网站域名解析怎么操作?遇到问题如何解决?">网站域名解析怎么操作?遇到问题如何解决?</a></li><li><a href="https://www.0717sq.com/article-10209-1.html" title="怎么检查营销网站违法?有哪些步骤和注意事项?">怎么检查营销网站违法?有哪些步骤和注意事项?</a></li><li><a href="https://www.0717sq.com/article-10210-1.html" title="安顺如何推广网站?有哪些有效的本地SEO策略?">安顺如何推广网站?有哪些有效的本地SEO策略?</a></li><li><a href="https://www.0717sq.com/article-10212-1.html" title="海尔网站推广现状如何?效果和策略是什么?">海尔网站推广现状如何?效果和策略是什么?</a></li><li><a href="https://www.0717sq.com/article-10215-1.html" title="怎么把网站搬到博客上看?步骤是什么?">怎么把网站搬到博客上看?步骤是什么?</a></li><li><a href="https://www.0717sq.com/article-10227-1.html" title="商业分析网站推荐怎么写?如何选择合适的分析工具?">商业分析网站推荐怎么写?如何选择合适的分析工具?</a></li><li><a href="https://www.0717sq.com/article-10183-1.html" title="如何做香港网站网址推广?有哪些高效的方法和策略?">如何做香港网站网址推广?有哪些高效的方法和策略?</a></li><li><a href="https://www.0717sq.com/article-10207-1.html" title="企业如何布局网站推广?网站推广的常见问题有哪些?">企业如何布局网站推广?网站推广的常见问题有哪些?</a></li><li><a href="https://www.0717sq.com/article-10208-1.html" title="如何运营购物网站推广?有哪些有效的推广策略和技巧?">如何运营购物网站推广?有哪些有效的推广策略和技巧?</a></li><li><a href="https://www.0717sq.com/article-10218-1.html" title="HTML编程工具有哪些?如何选择适合自己的工具?">HTML编程工具有哪些?如何选择适合自己的工具?</a></li></ul> </dd> </dl> <dl class="function" id="divTags"> <dt class="function_t">标签列表</dt><dd class="function_c"> <ul><li><a title="优化" href="https://www.0717sq.com/view-1-1.html">优化<span class="tag-count"> (529)</span></a></li> <li><a title="关键词排名" href="https://www.0717sq.com/view-2-1.html">关键词排名<span class="tag-count"> (80)</span></a></li> <li><a title="网站排名" href="https://www.0717sq.com/view-3-1.html">网站排名<span class="tag-count"> (132)</span></a></li> <li><a title="排名" href="https://www.0717sq.com/view-4-1.html">排名<span class="tag-count"> (93)</span></a></li> <li><a title="网站优化" href="https://www.0717sq.com/view-7-1.html">网站优化<span class="tag-count"> (342)</span></a></li> <li><a title="SEO技术" href="https://www.0717sq.com/view-9-1.html">SEO技术<span class="tag-count"> (61)</span></a></li> <li><a title="搜索引擎" href="https://www.0717sq.com/view-10-1.html">搜索引擎<span class="tag-count"> (60)</span></a></li> <li><a title="网络推广" href="https://www.0717sq.com/view-11-1.html">网络推广<span class="tag-count"> (72)</span></a></li> <li><a title="搜索引擎优化" href="https://www.0717sq.com/view-12-1.html">搜索引擎优化<span class="tag-count"> (54)</span></a></li> <li><a title="百度优化" href="https://www.0717sq.com/view-13-1.html">百度优化<span class="tag-count"> (143)</span></a></li> <li><a title="抖音小店" href="https://www.0717sq.com/view-16-1.html">抖音小店<span class="tag-count"> (142)</span></a></li> <li><a title="抖音" href="https://www.0717sq.com/view-26-1.html">抖音<span class="tag-count"> (702)</span></a></li> <li><a title="关键词优化" href="https://www.0717sq.com/view-45-1.html">关键词优化<span class="tag-count"> (133)</span></a></li> <li><a title="SEO优化" href="https://www.0717sq.com/view-52-1.html">SEO优化<span class="tag-count"> (350)</span></a></li> <li><a title="百度" href="https://www.0717sq.com/view-53-1.html">百度<span class="tag-count"> (80)</span></a></li> <li><a title="网站" href="https://www.0717sq.com/view-56-1.html">网站<span class="tag-count"> (57)</span></a></li> <li><a title="关键词" href="https://www.0717sq.com/view-67-1.html">关键词<span class="tag-count"> (89)</span></a></li> <li><a title="小红书" href="https://www.0717sq.com/view-113-1.html">小红书<span class="tag-count"> (127)</span></a></li> <li><a title="抖音seo" href="https://www.0717sq.com/view-209-1.html">抖音seo<span class="tag-count"> (80)</span></a></li> <li><a title="网站建设" href="https://www.0717sq.com/view-458-1.html">网站建设<span class="tag-count"> (122)</span></a></li> <li><a title="网站推广" href="https://www.0717sq.com/view-625-1.html">网站推广<span class="tag-count"> (48)</span></a></li> <li><a title="快手" href="https://www.0717sq.com/view-844-1.html">快手<span class="tag-count"> (176)</span></a></li> <li><a title="快手直播" href="https://www.0717sq.com/view-849-1.html">快手直播<span class="tag-count"> (48)</span></a></li> <li><a title="SEO" href="https://www.0717sq.com/view-2678-1.html">SEO<span class="tag-count"> (90)</span></a></li> <li><a title="B站" href="https://www.0717sq.com/view-2786-1.html">B站<span class="tag-count"> (59)</span></a></li> </ul> </dd> </dl> </div> </div> <div class="footer tx-color1 tx-color2"> <div class="wide"> Copyright © www.0717sq.com All Rights Reserved. <a href="https://beian.miit.gov.cn/#/Integrated/index" rel="nofollow" target="_blank">滇ICP备2024033040号</a> 图片来源于网络,如有侵权请联系删除<br><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><script>var _hmt=_hmt||[];(function(){var hm=document.createElement("script");hm.src="https://hm.baidu.com/hm.js?166f982695c2dbf4367465522c0f289d";var s=document.getElementsByTagName("script")[0];s.parentNode.insertBefore(hm,s)})();</script> </div> </div> <div class="sponsor-box pop-box" style="display:none;"> <div class="pop-con"> <h2><a href="javascript:void(0)" class="pop-off fr"><i class="iconfont icon-guanbi1"></i></a>谢谢打赏</h2> <ul class="clearfix"> <li> <img src="https://www.0717sq.com/zb_users/theme/tx_three/include/weixin.png"> <p>支付宝</p> </li> <li> <img src="https://www.0717sq.com/zb_users/theme/tx_three/include/zfb.png"> <p>微信</p> </li> </ul> </div> <div class="pop-off1"></div> </div> <div class="share-box pop-box" style="display:none;"> <div class="pop-con"> <h2><a href="javascript:void(0)" class="pop-off fr"><i class="iconfont icon-guanbi1"></i></a>在线分享</h2> <div class="pd20"> <div class="bsync-custom icon-long-orange"><a title="一键分享到各大微博和社交网络" class="bshare-bsync" onclick="javascript:bSync.share(event)"></a><span class="BSHARE_COUNT bshare-share-count">0</span></div> <script type="text/javascript" charset="utf-8" src="http://static.bshare.cn/b/bsync.js#uuid=#uuid=&style=1"></script> </div> </div> <div class="pop-off1"></div> </div> <div class="gotop" style="display:none"><i class="iconfont icon-dingbu"></i></div> <script src="https://www.0717sq.com/zb_users/theme/tx_three/script/txcstx.js" type="text/javascript"></script> <script src="https://www.0717sq.com/zb_users/theme/tx_three/script/imgpang.js?r=1.5.8" type="text/javascript"></script><script language="javascript" src="https://www.0717sq.com/zb_users/plugin/tx_side/js/txcstx.js"></script> </body> </html><!--175.28 ms , 24 queries , 4509kb memory , 0 error-->