当前位置:网站首页 > SEO技术 > 正文

HTML标签中成对标签有哪些?它们的使用规则是什么?

游客游客 2025-07-06 21:54:01 3

HTML(HyperTextMarkupLanguage,超文本标记语言)是构建网页的基础,它通过不同的标签(Tag)来定义内容的结构和布局。在众多HTML标签中,有些是成对出现的,这意味着它们有开始标签和结束标签,用来包裹和定义网页元素。了解这些成对标签对于掌握HTML和编写有效SEO友好的网页内容至关重要。接下来,我们将详细介绍这些成对标签,并对其用途进行指导。

什么是成对标签?

成对标签在HTML中又称为容器标签,它们总是成对出现:一个开始标签``和一个对应的结束标签``。开始标签表示内容的开始,而结束标签则表示该部分内容的结束。不同于成对标签的是自闭合标签(也称为单标签),它们不需要结束标签,如`
`,``等。

HTML标签中成对标签有哪些?它们的使用规则是什么?

常见的HTML成对标签

``和``

这两个标签定义了整个HTML文档的范围。所有的HTML代码都包含在这两个标签内,它们标志着一个HTML页面的开始和结束。

``和``

``标签包含的是关于文档的元数据,如``(网页标题)、`<meta>`(字符集声明、页面描述、关键词等)、链接到样式表的`<link>`等。所有这些信息都不会直接显示在浏览器窗口,但它们为页面的显示和搜索优化提供了基础。</p> <p><strong>`<title>`和``

``标签定义了浏览器工具栏的标题,也作为书签的名称,并且在搜索引擎结果页面中显示为链接标题。一个良好优化的`<title>`标签对于SEO至关重要。</p> <p><strong>`<body>`和`</body>`</strong></p> <p>`<body>`标签包含了页面所有可见的HTML内容,如段落、标题、链接、图片、列表等。所有的网页内容都应当放在`<body>`标签内。</p> <p><strong>`<header>`和`</header>`</strong></p> <p><strong>`<footer>`和`</footer>`</strong></p> <p>`<footer>`标签定义了文档或节的页脚区域,常用于包含版权信息、相关链接等。页脚标签有助于分隔页脚内容。</p> <p><strong>`<article>`和`</article>`</strong></p> <p>`<article>`标签用于定义独立的、可重复使用的页面内容,如博客文章或新闻报道。它有助于搜索引擎识别页面的主要内容区域。</p> <p><strong>`<section>`和`</section>`</strong></p> <p>`<section>`标签用于对文档中的节进行分组,例如各章节。这个标签为内容提供了结构化的分块,便于阅读和SEO。</p> <p><strong>`<nav>`和`</nav>`</strong></p> <p>`<nav>`标签定义了页面的主要导航链接。它有助于蜘蛛程序识别和索引重要的导航链接。</p> <p><strong>`<aside>`和`</aside>`</strong></p> <p>`<aside>`标签用于定义页面内容之外的内容,如侧边栏。它可以包含链接、广告或其他内容,与页面的主要内容是独立的。</p> <p><strong>`<figure>`和`</figure>`</strong></p> <p>`<figure>`标签用于包含图片、图表、代码示例等独立内容,而`<figcaption>`标签用来定义`<figure>`元素的标题或说明文字。</p> <p><strong>`<p>`和`</p>`</strong></p> <p>`<p>`标签定义了文档中的一个段落,是文本内容的基本单位。</p> <p><strong>`<div>`和`</div>`</strong></p> <p>`<div>`标签是一个非常通用的容器,它将文档分割为不同的部分。尽管`<div>`标签可以用来控制样式和布局,但使用时需谨慎,以免过度使用。</p> <p style="text-align: center;"><img alt="HTML标签中成对标签有哪些?它们的使用规则是什么?" title="HTML标签中成对标签有哪些?它们的使用规则是什么?" src="https://www.365cms.com/zb_users/upload/2025/07/20250705203621_56373.jpeg"/></p> <h2>结合实例深入了解</h2> <p>理解这些成对标签的最佳方式是通过实际编码示例。在编写HTML时,每个开始标签都需要有一个相应的结束标签,以确保内容被正确地包裹。一个简单的HTML结构可以是:</p> <p>```html</p> <p><!DOCTYPEhtml></p> <p><html></p> <p><head></p> <p><title>我的网页

我的网站标题

文章标题

这是文章的内容。

版权所有©2023我的网站

```

HTML标签中成对标签有哪些?它们的使用规则是什么?

SEO优化与成对标签的关联

在SEO优化方面,合理使用成对标签对于提升网站的搜索引擎排名具有积极作用。使用``、`<header>`、`<article>`、`<section>`等标签可以增强内容的结构性,使搜索引擎更容易理解页面内容的主题和重要性,从而有助于提高页面的相关性和可见性。</p> <h2>总体建议</h2> <p>为了编写符合SEO标准的HTML代码,建议遵循以下几点:</p> <p>使用语义化标签来定义内容结构。</p> <p>确保标签正确闭合,避免因代码错误导致的页面加载问题。</p> <p>采用简洁、清晰的代码结构,避免过度的嵌套。</p> <p>适时使用`<meta>`标签提供关键信息,如描述、关键词等。</p> <p>优化标题标签,确保每个页面都具有独特的`<title>`,并准确反映页面内容。</p> <p>通过以上方法,可以确保你的网站对于搜索引擎更加友好,同时也能为用户提供更好的阅读体验。</p> <p>在不断进化的网络环境中,持续学习和适应新的HTML标准和SEO最佳实践是非常重要的。掌握成对标签的使用,不仅能够帮助你构建结构良好的网页,还可以在搜索引擎优化中占得先机。记住,每次编写代码时都应考虑其对用户体验和搜索引擎的影响,从而为你的网站带来更高的访问量和更好的用户满意度。</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-60875-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-60750-1.html" title="怎么用产品关键词找网站?有效方法和技巧是什么?">怎么用产品关键词找网站?有效方法和技巧是什么?</a> </li> <li class="fr">下一篇: <a href="https://www.365cms.com/article-60904-1.html" title="如何自制一个小网站推广?有哪些步骤和技巧?">如何自制一个小网站推广?有哪些步骤和技巧?</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-60959-1.html" title="产生斜体字的html标签有哪些?如何正确使用它们?" class="img-x20"><img src="https://www.365cms.com/zb_users/upload/2025/07/20250705204339_24915.jpeg" alt="产生斜体字的html标签有哪些?如何正确使用它们?"></a> <h3><a href="https://www.365cms.com/article-60959-1.html" title="产生斜体字的html标签有哪些?如何正确使用它们?">产生斜体字的html标签有哪些?如何正确使用它们?</a></h3> </li> <li class="col-6 col-m-12"> <a href="https://www.365cms.com/article-58557-1.html" title="HTML标签如何接收变量值?哪些标签具备此功能?" class="img-x20"><img src="https://www.365cms.com/zb_users/upload/2025/06/20250623170711_18608.jpeg" alt="HTML标签如何接收变量值?哪些标签具备此功能?"></a> <h3><a href="https://www.365cms.com/article-58557-1.html" title="HTML标签如何接收变量值?哪些标签具备此功能?">HTML标签如何接收变量值?哪些标签具备此功能?</a></h3> </li> <li class="col-6 col-m-12"> <a href="https://www.365cms.com/article-59382-1.html" title="HTML标签有哪些及其用途是什么?" class="img-x20"><img src="https://www.365cms.com/zb_users/upload/2025/06/20250623182321_49674.jpeg" alt="HTML标签有哪些及其用途是什么?"></a> <h3><a href="https://www.365cms.com/article-59382-1.html" title="HTML标签有哪些及其用途是什么?">HTML标签有哪些及其用途是什么?</a></h3> </li> <li class="col-6 col-m-12"> <a href="https://www.365cms.com/article-59261-1.html" title="下面哪些html标签是必须了解的?它们各自的作用是什么?" class="img-x20"><img src="https://www.365cms.com/zb_users/upload/2025/06/20250623181138_28505.jpeg" alt="下面哪些html标签是必须了解的?它们各自的作用是什么?"></a> <h3><a href="https://www.365cms.com/article-59261-1.html" title="下面哪些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="如何高效汇总分析网站数据?需要哪些工具和技巧?" href="https://www.365cms.com/article-60763-1.html">如何高效汇总分析网站数据?需要哪些工具和技巧?</a></li> <li><a title="网站关键词怎么设置知乎?设置关键词的最佳实践是什么?" href="https://www.365cms.com/article-60757-1.html">网站关键词怎么设置知乎?设置关键词的最佳实践是什么?</a></li> <li><a title="网站地图如何打开设置?设置过程中常见的问题有哪些?" href="https://www.365cms.com/article-60749-1.html">网站地图如何打开设置?设置过程中常见的问题有哪些?</a></li> <li><a title="有网站了怎么在谷歌优化?优化步骤和技巧有哪些?" href="https://www.365cms.com/article-60740-1.html">有网站了怎么在谷歌优化?优化步骤和技巧有哪些?</a></li> <li><a title="抖音上如何推广电影网站?有哪些有效策略?" href="https://www.365cms.com/article-58806-1.html">抖音上如何推广电影网站?有哪些有效策略?</a></li> <li><a title="HTML5优化方法有哪些?如何提升网站性能?" href="https://www.365cms.com/article-58803-1.html">HTML5优化方法有哪些?如何提升网站性能?</a></li> <li><a title="做地形分析网站怎么做的?需要哪些步骤和工具?" href="https://www.365cms.com/article-58798-1.html">做地形分析网站怎么做的?需要哪些步骤和工具?</a></li> <li><a title="网站功能架构图怎么做?如何设计出高效的网站结构图?" href="https://www.365cms.com/article-58792-1.html">网站功能架构图怎么做?如何设计出高效的网站结构图?</a></li> <li><a title="如何添加网站站点地图?站点地图添加步骤和注意事项是什么?" href="https://www.365cms.com/article-58503-1.html">如何添加网站站点地图?站点地图添加步骤和注意事项是什么?</a></li> <li><a title="网站信息架构图怎么制作?制作过程中需要注意哪些问题?" href="https://www.365cms.com/article-58497-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-59013-1.html" title="网站改版公告怎么写好?改版后有哪些新功能?">网站改版公告怎么写好?改版后有哪些新功能?</a></li><li><a href="https://www.365cms.com/article-58921-1.html" title="如何提升网站加载速度?优化技巧和常见问题解答?">如何提升网站加载速度?优化技巧和常见问题解答?</a></li><li><a href="https://www.365cms.com/article-59950-1.html" title="抖音王者剪辑怎么剪的啊?视频编辑技巧有哪些?">抖音王者剪辑怎么剪的啊?视频编辑技巧有哪些?</a></li><li><a href="https://www.365cms.com/article-59965-1.html" title="抖音剪辑本地素材删除方法是什么?如何彻底清除不再需要的视频素材?">抖音剪辑本地素材删除方法是什么?如何彻底清除不再需要的视频素材?</a></li><li><a href="https://www.365cms.com/article-58948-1.html" title="如何推广ic网站的销量?有效策略有哪些?">如何推广ic网站的销量?有效策略有哪些?</a></li><li><a href="https://www.365cms.com/article-59103-1.html" title="网站改版推文怎么写才吸引人?改版后如何保持用户关注?">网站改版推文怎么写才吸引人?改版后如何保持用户关注?</a></li><li><a href="https://www.365cms.com/article-59934-1.html" title="如何优化.net网站关键词?.net关键词优化常见问题解答?">如何优化.net网站关键词?.net关键词优化常见问题解答?</a></li><li><a href="https://www.365cms.com/article-59995-1.html" title="自媒体推荐量怎么优化?提高自媒体推荐量的策略是什么?">自媒体推荐量怎么优化?提高自媒体推荐量的策略是什么?</a></li><li><a href="https://www.365cms.com/article-58911-1.html" title="网站建设域名解析怎么写?解析步骤和常见问题解答?">网站建设域名解析怎么写?解析步骤和常见问题解答?</a></li><li><a href="https://www.365cms.com/article-59084-1.html" title="网站如何推广工作经验?有效策略有哪些?">网站如何推广工作经验?有效策略有哪些?</a></li><li><a href="https://www.365cms.com/article-59087-1.html" title="怎么分析是不是钓鱼网站?识别钓鱼网站的技巧有哪些?">怎么分析是不是钓鱼网站?识别钓鱼网站的技巧有哪些?</a></li><li><a href="https://www.365cms.com/article-59946-1.html" title="快手视频快进剪辑技巧是什么?如何快速编辑视频内容?">快手视频快进剪辑技巧是什么?如何快速编辑视频内容?</a></li><li><a href="https://www.365cms.com/article-59961-1.html" title="抖音剪辑怎么制作bgm?背景音乐的添加和编辑技巧是什么?">抖音剪辑怎么制作bgm?背景音乐的添加和编辑技巧是什么?</a></li><li><a href="https://www.365cms.com/article-59977-1.html" title="小红书图文剪辑技巧有哪些?如何快速编辑出高质量内容?">小红书图文剪辑技巧有哪些?如何快速编辑出高质量内容?</a></li><li><a href="https://www.365cms.com/article-59978-1.html" title="拍抖音歌曲台词怎么剪辑?视频编辑技巧有哪些?">拍抖音歌曲台词怎么剪辑?视频编辑技巧有哪些?</a></li><li><a href="https://www.365cms.com/article-59928-1.html" title="在快手上剪辑扭腰视频的步骤是什么?遇到问题如何解决?">在快手上剪辑扭腰视频的步骤是什么?遇到问题如何解决?</a></li><li><a href="https://www.365cms.com/article-59107-1.html" title="响应式设计实现方法是什么?如何确保网站兼容各种设备?">响应式设计实现方法是什么?如何确保网站兼容各种设备?</a></li><li><a href="https://www.365cms.com/article-59007-1.html" title="网站架构图怎么画出来?需要哪些步骤和工具?">网站架构图怎么画出来?需要哪些步骤和工具?</a></li><li><a href="https://www.365cms.com/article-59878-1.html" title="自媒体视频怎么优化?优化策略有哪些?">自媒体视频怎么优化?优化策略有哪些?</a></li><li><a href="https://www.365cms.com/article-59903-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-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-8-1.html" title="网站推广">网站推广</a><a href="https://www.365cms.com/view-465-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-1186-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-6-1.html" title="排名">排名</a><a href="https://www.365cms.com/view-944-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-301-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"> (613)</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"> (476)</span></a></li> <li><a title="网站推广" href="https://www.365cms.com/view-8-1.html">网站推广<span class="tag-count"> (823)</span></a></li> <li><a title="关键词" href="https://www.365cms.com/view-10-1.html">关键词<span class="tag-count"> (354)</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"> (511)</span></a></li> <li><a title="网站优化" href="https://www.365cms.com/view-18-1.html">网站优化<span class="tag-count"> (1182)</span></a></li> <li><a title="抖音seo" href="https://www.365cms.com/view-36-1.html">抖音seo<span class="tag-count"> (886)</span></a></li> <li><a title="抖音" href="https://www.365cms.com/view-50-1.html">抖音<span class="tag-count"> (2892)</span></a></li> <li><a title="百度优化" href="https://www.365cms.com/view-54-1.html">百度优化<span class="tag-count"> (531)</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"> (452)</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"> (1413)</span></a></li> <li><a title="搜索引擎" href="https://www.365cms.com/view-314-1.html">搜索引擎<span class="tag-count"> (344)</span></a></li> <li><a title="推广" href="https://www.365cms.com/view-321-1.html">推广<span class="tag-count"> (333)</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"> (372)</span></a></li> <li><a title="网站建设" href="https://www.365cms.com/view-944-1.html">网站建设<span class="tag-count"> (489)</span></a></li> <li><a title="快手" href="https://www.365cms.com/view-1121-1.html">快手<span class="tag-count"> (979)</span></a></li> <li><a title="小红书" href="https://www.365cms.com/view-1186-1.html">小红书<span class="tag-count"> (596)</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><!--116.45 ms , 23 queries , 4612kb memory , 0 error-->