【发布时间】:2013-10-10 06:48:26
【问题描述】:
我的网页将被 google 和 bing 抓取工具抓取。其中一页使用 twitter bootstrap 2.3.2 Tabbable nav:
<div class="tabbable">
<ul class="nav nav-tabs">
<li class="active"><a href="#tab1" data-toggle="tab">Section 1</a></li>
<li><a href="#tab2" data-toggle="tab">Section 2</a></li>
</ul>
<div class="tab-content">
<div class="tab-pane active" id="tab1">
<p>I'm in Section 1</p>
</div>
<div class="tab-pane" id="tab2">
<p>Howdy, I'm in Section 2 and not currently visible. Will search engines ignore me?</p>
</div>
</div>
</div>
由于非活动标签上的内容是隐藏的,我可以看到搜索引擎在抓取网站时会施加重大惩罚或完全打折该内容——这对标签来说不是好消息,因为它们需要被删除。
In this linkgoogle 警告隐藏文本。和马特卡茨说"I don’t recommend that people use CSS to hide text" 很清楚你可以因为隐藏文本而受到惩罚。但是,引擎可能足够聪明,可以区分有效和无效隐藏。
我对隐藏标签的关注是否有道理,或者搜索引擎是否有区别?
【问题讨论】:
-
你能评价一下我的回答吗?在过去的几天里,我已经根据您所要求的参考对其进行了编辑。
标签: css twitter-bootstrap seo bing google-search