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

成对出现的HTML标签有哪些?它们的作用是什么?

游客游客 2025-07-21 08:27:01 17

HTML标签是构成网页内容的基石,它告诉浏览器如何显示网页的各个部分。对于初学者来说,理解HTML的基础知识至关重要,尤其是在学习如何构建网页布局时。成对出现的HTML标签在HTML文档中占据重要地位,它们被用来定义网页的结构和内容。本文将深入探讨这些标签,并指导如何正确使用它们。

开篇核心突出

在HTML中,成对出现的标签是一些必须有一个开始标签和一个结束标签来包围内容的元素。这种结构确保了内容的正确显示以及网页的结构化。本文将详细介绍最常见的成对标签,并提供实用的使用指南。掌握这些标签的正确使用,对于创建符合标准的HTML文档至关重要。

成对标签的基本概念

在HTML中,标签通常分为两大类:成对标签和空标签。成对标签由一个开始标签和一个结束标签组成,它们包围并定义了网页中的某个部分。空标签则是单独使用,不需要结束标签,例如``和`
`。

成对出现的HTML标签有哪些?它们的作用是什么?

为什么需要成对标签

成对标签为网页内容提供了明确的结构框架,使得网页的布局和内容更加有序。它们是网页设计和开发过程中的基础,对搜索引擎优化(SEO)也有重要作用。

常见的成对标签

成对出现的HTML标签有哪些?它们的作用是什么?

1.``标签

开始标签:``

结束标签:``

``标签是所有HTML文档的根元素,它定义了一个HTML文档的开始和结束。

成对出现的HTML标签有哪些?它们的作用是什么?

2.``标签

开始标签:``

结束标签:``

``标签包含了文档的元数据,如文档标题、链接到样式表、脚本等。

3.``标签</h2> <p><strong>开始标签</strong>:`<title>`</p> <p><strong>结束标签</strong>:``

``标签定义了HTML文档的标题,显示在浏览器标签页上。</p> <h2>4.`<body>`标签</h2> <p><strong>开始标签</strong>:`<body>`</p> <p><strong>结束标签</strong>:`</body>`</p> <p>`<body>`标签包含了文档所有可见的页面内容,如文本、图片、链接等。</p> <h2>5.`<header>`标签</h2> <p><strong>开始标签</strong>:`<header>`</p> <p><strong>结束标签</strong>:`</header>`</p> <p>`<header>`标签用于定义文档或节的头部区域,常用于包含网站的导航菜单、标题等。</p> <h2>6.`<footer>`标签</h2> <p><strong>开始标签</strong>:`<footer>`</p> <p><strong>结束标签</strong>:`</footer>`</p> <p>`<footer>`标签用于定义文档或节的底部区域,常用于包含版权信息、联系方式等。</p> <h2>7.`<article>`标签</h2> <p><strong>开始标签</strong>:`<article>`</p> <p><strong>结束标签</strong>:`</article>`</p> <p>`<article>`标签定义了独立的内容区域,可以是博客文章、新闻报道、评论等。</p> <h2>8.`<section>`标签</h2> <p><strong>开始标签</strong>:`<section>`</p> <p><strong>结束标签</strong>:`</section>`</p> <p>`<section>`标签用于对文档中的内容进行分块,每个`<section>`通常包含一个独立的主题或功能。</p> <h2>9.`<nav>`标签</h2> <p><strong>开始标签</strong>:`<nav>`</p> <p><strong>结束标签</strong>:`</nav>`</p> <p>`<nav>`标签用于定义一个导航链接的部分,通常包含网站的主导航菜单。</p> <h2>10.`<aside>`标签</h2> <p><strong>开始标签</strong>:`<aside>`</p> <p><strong>结束标签</strong>:`</aside>`</p> <p>`<aside>`标签用于定义和页面主体内容间接相关的内容,如侧边栏、广告、引文等。</p> <h2>实用技巧与常见问题</h2> <p><strong>实用技巧</strong></p> <p>使用`<section>`和`<article>`时,思考内容是否可以独立存在。如果可以,那么使用`<article>`可能是更好的选择。</p> <p>在编写HTML时,始终记得闭合你的标签。未闭合的标签可能导致浏览器渲染出错或不按预期显示。</p> <p>了解并利用HTML5新增的语义化标签(如`<header>`,`<footer>`,`<article>`,`<section>`),可以帮助你更好地组织内容结构,对SEO也有正面效果。</p> <p><strong>常见问题</strong></p> <p><strong>问题</strong>:我是否可以使用`<br/>`来代替`<p>`标签来创建段落?</p> <p><strong>答案</strong>:不可以。`<br/>`标签是一个空标签,用于创建文本内的换行,而`<p>`标签用于创建一个段落。段落是成对出现的,应使用`<p>`来定义一个段落的开始和结束。</p> <p><strong>问题</strong>:如果我忘记了结束标签会怎样?</p> <p><strong>答案</strong>:如果你忘记了结束标签,浏览器通常会尝试猜测你的意图并正确渲染页面,但这种方式并不总是可靠。有时会导致布局问题或内容显示错误。养成良好的编码习惯,确保总是闭合标签是非常重要的。</p> <h2>结语</h2> <p>通过以上内容,我们已经涵盖了HTML中一些最常用的成对标签。记住,正确的标签使用是构建有效HTML文档的基础。掌握这些知识,你将能够创建结构清晰、内容丰富的网页。同时,随着HTML5的普及,语义化标签的使用让网页内容更具有意义,对提升用户体验和搜索引擎优化都有极大的帮助。综合以上,继续实践和探索更多的HTML标签,将有助于你在网页设计和开发领域更进一步。</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.365cms.com/" title="365seo"><strong>365seo</strong></a>,本文标题:<a href="https://www.365cms.com/article-62267-1.html" title="成对出现的HTML标签有哪些?它们的作用是什么?">《成对出现的HTML标签有哪些?它们的作用是什么?》</a><p> <p class="info-tag">标签:<a href="https://www.365cms.com/view-12396-1.html" title="HTML标签" rel="tag" >HTML标签</a></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.365cms.com/article-63882-1.html" title="抖音帅哥关键词搜索?怎样搜索到看帅哥的关键词?">抖音帅哥关键词搜索?怎样搜索到看帅哥的关键词?</a> </li> <li class="fr">下一篇: <a href="https://www.365cms.com/article-63871-1.html" title="如何利用网站内容推荐系统优化提升网站SEO效果?">如何利用网站内容推荐系统优化提升网站SEO效果?</a> </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.365cms.com/article-61041-1.html" title="HTML标签中哪些带有value属性?如何正确使用它们?" class="img-x20"><img src="https://www.365cms.com/zb_users/upload/2025/07/20250709184547_20634.jpeg" alt="HTML标签中哪些带有value属性?如何正确使用它们?"></a> <h3><a href="https://www.365cms.com/article-61041-1.html" title="HTML标签中哪些带有value属性?如何正确使用它们?">HTML标签中哪些带有value属性?如何正确使用它们?</a></h3> </li> <li class="col-6 col-m-12"> <a href="https://www.365cms.com/article-58287-1.html" title="HTML标签规则有哪些?如何正确使用HTML标签?" class="img-x20"><img src="https://www.365cms.com/zb_users/upload/2025/06/20250623164339_96516.jpeg" alt="HTML标签规则有哪些?如何正确使用HTML标签?"></a> <h3><a href="https://www.365cms.com/article-58287-1.html" title="HTML标签规则有哪些?如何正确使用HTML标签?">HTML标签规则有哪些?如何正确使用HTML标签?</a></h3> </li> <li class="col-6 col-m-12"> <a href="https://www.365cms.com/article-61037-1.html" title="HTML中哪些标签包含src属性?src属性的具体作用是什么?" class="img-x20"><img src="example.jpg" alt="HTML中哪些标签包含src属性?src属性的具体作用是什么?"></a> <h3><a href="https://www.365cms.com/article-61037-1.html" title="HTML中哪些标签包含src属性?src属性的具体作用是什么?">HTML中哪些标签包含src属性?src属性的具体作用是什么?</a></h3> </li> <li class="col-6 col-m-12"> <a href="https://www.365cms.com/article-58483-1.html" title="HTML标签封闭了哪些元素?如何正确使用HTML标签?" class="img-x20"><img src="https://www.365cms.com/zb_users/upload/2025/06/20250623170036_87263.jpeg" alt="HTML标签封闭了哪些元素?如何正确使用HTML标签?"></a> <h3><a href="https://www.365cms.com/article-58483-1.html" title="HTML标签封闭了哪些元素?如何正确使用HTML标签?">HTML标签封闭了哪些元素?如何正确使用HTML标签?</a></h3> </li> </ul> </div> </div> </div> </div> <div class="box-left"> <dl> <ul class="side-menu"> <li><a title="城市SEO" href="https://www.365cms.com/CSSEO.html">城市SEO</a></li> <li><a title="百度优化" href="https://www.365cms.com/BDYH.html">百度优化</a></li> <li><a title="SEO优化" href="https://www.365cms.com/SEOYH.html">SEO优化</a></li> <li><a title="SEO技术" href="https://www.365cms.com/SEOJS.html">SEO技术</a></li> <li><a title="SEO服务" href="https://www.365cms.com/SEOFW.html">SEO服务</a></li> <li><a title="短视频推广" href="https://www.365cms.com/DSPTG.html">短视频推广</a></li> <li><a title="网站推广" href="https://www.365cms.com/WZTG.html">网站推广</a></li> <li><a title="SEO知识" href="https://www.365cms.com/SEOZS.html">SEO知识</a></li> </ul> </dl> <dl> <dt>关于我</dt> <dd> <!--<p class="mb10">关注微信送SEO教程</p>--> <p class="mb10 img-d"><img src="https://www.365cms.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.365cms.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="610分上民办?福耀科技大学首年招生,投档线惊人,实力不容小觑" href="https://www.365cms.com/article-64086-1.html">610分上民办?福耀科技大学首年招生,投档线惊人,实力不容小觑</a></li> <li><a title="安徽最新天气:局地直逼40℃!雷电、强降水上线" href="https://www.365cms.com/article-64085-1.html">安徽最新天气:局地直逼40℃!雷电、强降水上线</a></li> <li><a title="全运会名单曝光!李梦回归四川队参赛,成夺冠热门,队员阵容豪华" href="https://www.365cms.com/article-64084-1.html">全运会名单曝光!李梦回归四川队参赛,成夺冠热门,队员阵容豪华</a></li> <li><a title="食堂网站如何推广?有效策略和常见问题解答?" href="https://www.365cms.com/article-58324-1.html">食堂网站如何推广?有效策略和常见问题解答?</a></li> <li><a title="网站关键词怎么查询?查询关键词有哪些技巧?" href="https://www.365cms.com/article-58321-1.html">网站关键词怎么查询?查询关键词有哪些技巧?</a></li> <li><a title="网站关键词投票怎么弄?投票流程和注意事项是什么?" href="https://www.365cms.com/article-58313-1.html">网站关键词投票怎么弄?投票流程和注意事项是什么?</a></li> <li><a title="谷歌推广网站的策略是什么?如何利用谷歌提升网站流量?" href="https://www.365cms.com/article-58298-1.html">谷歌推广网站的策略是什么?如何利用谷歌提升网站流量?</a></li> <li><a title="已有网站软件怎么改版?改版过程中常见问题有哪些?" href="https://www.365cms.com/article-58293-1.html">已有网站软件怎么改版?改版过程中常见问题有哪些?</a></li> <li><a title="网站如何自己优化推广?有哪些有效的方法和步骤?" href="https://www.365cms.com/article-58291-1.html">网站如何自己优化推广?有哪些有效的方法和步骤?</a></li> <li><a title="“三台共舞”形成!广东雷雨高温携手登场,接下来深圳天气预报" href="https://www.365cms.com/article-64083-1.html">“三台共舞”形成!广东雷雨高温携手登场,接下来深圳天气预报</a></li> </ul> </dd> </dl> <dl class="function" id="divtxhotlist"> <dt class="function_t">热门文章</dt><dd class="function_c"> <ul><li><a href="https://www.365cms.com/article-61417-1.html" title="怎么分析一个网站的内容?网站内容分析的关键步骤是什么?">怎么分析一个网站的内容?网站内容分析的关键步骤是什么?</a></li><li><a href="https://www.365cms.com/article-63938-1.html" title="抖音热点标签关键词怎么看?如何快速找到并利用热点标签?">抖音热点标签关键词怎么看?如何快速找到并利用热点标签?</a></li><li><a href="https://www.365cms.com/article-61373-1.html" title="推荐来源分析网站怎么做?如何优化网站推荐来源分析?">推荐来源分析网站怎么做?如何优化网站推荐来源分析?</a></li><li><a href="https://www.365cms.com/article-61783-1.html" title="如何做网站推广视频?视频营销的常见问题有哪些?">如何做网站推广视频?视频营销的常见问题有哪些?</a></li><li><a href="https://www.365cms.com/article-61663-1.html" title="网站建设公司怎么营销的?营销策略有哪些?">网站建设公司怎么营销的?营销策略有哪些?</a></li><li><a href="https://www.365cms.com/article-61752-1.html" title="如何绘制网站优化结构图?步骤和技巧是什么?">如何绘制网站优化结构图?步骤和技巧是什么?</a></li><li><a href="https://www.365cms.com/article-61956-1.html" title="怎么做好软文网站营销?掌握这些技巧提升效果">怎么做好软文网站营销?掌握这些技巧提升效果</a></li><li><a href="https://www.365cms.com/article-62523-1.html" title="网站镜像分析怎么做?如何确保网站镜像的准确性和效率?">网站镜像分析怎么做?如何确保网站镜像的准确性和效率?</a></li><li><a href="https://www.365cms.com/article-63932-1.html" title="抖音关键词爆款视频怎么弄?打造爆款视频的秘诀是什么?">抖音关键词爆款视频怎么弄?打造爆款视频的秘诀是什么?</a></li><li><a href="https://www.365cms.com/article-61685-1.html" title="网站怎么做关键词优化?优化步骤和常见问题解答?">网站怎么做关键词优化?优化步骤和常见问题解答?</a></li><li><a href="https://www.365cms.com/article-61831-1.html" title="苏州网站如何推广产品呢?有哪些有效的推广策略?">苏州网站如何推广产品呢?有哪些有效的推广策略?</a></li><li><a href="https://www.365cms.com/article-63933-1.html" title="3分钟短视频如何进行后期制作?后期制作中常见问题如何处理?">3分钟短视频如何进行后期制作?后期制作中常见问题如何处理?</a></li><li><a href="https://www.365cms.com/article-64057-1.html" title="实测6款AI搜索,谁才是效率之王?">实测6款AI搜索,谁才是效率之王?</a></li><li><a href="https://www.365cms.com/article-61360-1.html" title="谷歌优化是哪种软件?它在SEO中扮演什么角色?">谷歌优化是哪种软件?它在SEO中扮演什么角色?</a></li><li><a href="https://www.365cms.com/article-61911-1.html" title="抖音上如何找网站推广?有哪些有效方法?">抖音上如何找网站推广?有哪些有效方法?</a></li><li><a href="https://www.365cms.com/article-62339-1.html" title="HTML5新增了哪些表单功能?这些新特性如何应用?">HTML5新增了哪些表单功能?这些新特性如何应用?</a></li><li><a href="https://www.365cms.com/article-62453-1.html" title="怎么做网站分析?网站分析的步骤和技巧是什么?">怎么做网站分析?网站分析的步骤和技巧是什么?</a></li><li><a href="https://www.365cms.com/article-62458-1.html" title="网站架构图简图怎么画?绘制步骤和注意事项是什么?">网站架构图简图怎么画?绘制步骤和注意事项是什么?</a></li><li><a href="https://www.365cms.com/article-63939-1.html" title="淘宝标题中的关键词怎么打?优化标题提高搜索排名的技巧">淘宝标题中的关键词怎么打?优化标题提高搜索排名的技巧</a></li><li><a href="https://www.365cms.com/article-64050-1.html" title="一篇文章带你认识抖音:从娱乐工具到生活新方式">一篇文章带你认识抖音:从娱乐工具到生活新方式</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.365cms.com/view-2-1.html" title="优化">优化</a><a href="https://www.365cms.com/view-50-1.html" title="抖音">抖音</a><a href="https://www.365cms.com/view-331-1.html" title="抖音小店">抖音小店</a><a href="https://www.365cms.com/view-302-1.html" title="SEO优化">SEO优化</a><a href="https://www.365cms.com/view-18-1.html" title="网站优化">网站优化</a><a href="https://www.365cms.com/view-8-1.html" title="网站推广">网站推广</a><a href="https://www.365cms.com/view-1121-1.html" title="快手">快手</a><a href="https://www.365cms.com/view-36-1.html" title="抖音seo">抖音seo</a><a href="https://www.365cms.com/view-465-1.html" title="抖音橱窗">抖音橱窗</a><a href="https://www.365cms.com/view-1186-1.html" title="小红书">小红书</a><a href="https://www.365cms.com/view-1807-1.html" title="快手小店">快手小店</a><a href="https://www.365cms.com/view-4-1.html" title="关键词排名">关键词排名</a><a href="https://www.365cms.com/view-54-1.html" title="百度优化">百度优化</a><a href="https://www.365cms.com/view-16-1.html" title="网站排名">网站排名</a><a href="https://www.365cms.com/view-944-1.html" title="网站建设">网站建设</a><a href="https://www.365cms.com/view-6-1.html" title="排名">排名</a><a href="https://www.365cms.com/view-7-1.html" title="关键词优化">关键词优化</a><a href="https://www.365cms.com/view-127-1.html" title="抖音直播">抖音直播</a><a href="https://www.365cms.com/view-13-1.html" title="SEO知识">SEO知识</a><a href="https://www.365cms.com/view-321-1.html" title="推广">推广</a></div> </dd> </dl> <dl class="function" id="divTags"> <dt class="function_t">标签列表</dt><dd class="function_c"> <ul><li><a title="优化" href="https://www.365cms.com/view-2-1.html">优化<span class="tag-count"> (3399)</span></a></li> <li><a title="关键词排名" href="https://www.365cms.com/view-4-1.html">关键词排名<span class="tag-count"> (618)</span></a></li> <li><a title="排名" href="https://www.365cms.com/view-6-1.html">排名<span class="tag-count"> (506)</span></a></li> <li><a title="关键词优化" href="https://www.365cms.com/view-7-1.html">关键词优化<span class="tag-count"> (495)</span></a></li> <li><a title="网站推广" href="https://www.365cms.com/view-8-1.html">网站推广<span class="tag-count"> (1056)</span></a></li> <li><a title="关键词" href="https://www.365cms.com/view-10-1.html">关键词<span class="tag-count"> (371)</span></a></li> <li><a title="SEO知识" href="https://www.365cms.com/view-13-1.html">SEO知识<span class="tag-count"> (423)</span></a></li> <li><a title="网站排名" href="https://www.365cms.com/view-16-1.html">网站排名<span class="tag-count"> (515)</span></a></li> <li><a title="网站优化" href="https://www.365cms.com/view-18-1.html">网站优化<span class="tag-count"> (1225)</span></a></li> <li><a title="抖音seo" href="https://www.365cms.com/view-36-1.html">抖音seo<span class="tag-count"> (1019)</span></a></li> <li><a title="抖音" href="https://www.365cms.com/view-50-1.html">抖音<span class="tag-count"> (3029)</span></a></li> <li><a title="百度优化" href="https://www.365cms.com/view-54-1.html">百度优化<span class="tag-count"> (532)</span></a></li> <li><a title="网站" href="https://www.365cms.com/view-76-1.html">网站<span class="tag-count"> (368)</span></a></li> <li><a title="SEO技术" href="https://www.365cms.com/view-79-1.html">SEO技术<span class="tag-count"> (377)</span></a></li> <li><a title="抖音直播" href="https://www.365cms.com/view-127-1.html">抖音直播<span class="tag-count"> (454)</span></a></li> <li><a title="搜索引擎优化" href="https://www.365cms.com/view-301-1.html">搜索引擎优化<span class="tag-count"> (406)</span></a></li> <li><a title="SEO优化" href="https://www.365cms.com/view-302-1.html">SEO优化<span class="tag-count"> (1419)</span></a></li> <li><a title="推广" href="https://www.365cms.com/view-321-1.html">推广<span class="tag-count"> (419)</span></a></li> <li><a title="抖音小店" href="https://www.365cms.com/view-331-1.html">抖音小店<span class="tag-count"> (1595)</span></a></li> <li><a title="抖音橱窗" href="https://www.365cms.com/view-465-1.html">抖音橱窗<span class="tag-count"> (638)</span></a></li> <li><a title="营销型网站" href="https://www.365cms.com/view-887-1.html">营销型网站<span class="tag-count"> (399)</span></a></li> <li><a title="网站建设" href="https://www.365cms.com/view-944-1.html">网站建设<span class="tag-count"> (509)</span></a></li> <li><a title="快手" href="https://www.365cms.com/view-1121-1.html">快手<span class="tag-count"> (1022)</span></a></li> <li><a title="小红书" href="https://www.365cms.com/view-1186-1.html">小红书<span class="tag-count"> (636)</span></a></li> <li><a title="快手小店" href="https://www.365cms.com/view-1807-1.html">快手小店<span class="tag-count"> (631)</span></a></li> </ul> </dd> </dl> <dl class="function" id="divLinkage"> <dt class="function_t">友情链接</dt><dd class="function_c"> <ul><li class="link-item"><a href="https://www.19587.cn/" target="_blank" title="1号数码网">1号数码网</a></li><li class="link-item"><a href="https://www.dgsjsyxx.com/" target="_blank" title="电脑知识号">电脑知识号</a></li><li class="link-item"><a href="https://www.sgdj.net/" target="_blank" title="时光数码">时光数码</a></li> </ul> </dd> </dl> </div> </div> <div class="footer tx-color1 tx-color2"> <div class="wide"> Copyright © www.365cms.com All Rights Reserved. <a href="https://beian.miit.gov.cn/#/Integrated/index" rel="nofollow" target="_blank">渝ICP备2023007620号</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?f01259ab09c3ac8b2d0aa7fac941f762";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.365cms.com/zb_users/theme/tx_three/include/weixin.png"> <p>支付宝</p> </li> <li> <img src="https://www.365cms.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.365cms.com/zb_users/theme/tx_three/script/txcstx.js" type="text/javascript"></script> <script src="https://www.365cms.com/zb_users/theme/tx_three/script/imgpang.js?r=1.5.8" type="text/javascript"></script><script language="javascript" src="https://www.365cms.com/zb_users/plugin/tx_side/js/txcstx.js"></script> </body> </html><!--129.12 ms , 23 queries , 4574kb memory , 0 error-->