我有網頁,將被谷歌爬網和bing爬蟲。其中一個網頁使用Twitter的引導2.3.2 Tabbable nav:谷歌和/或bing爬蟲懲罰隱藏的twitter引導標籤中的內容
<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 link谷歌警告隱藏文字。馬特卡茨說"I don’t recommend that people use CSS to hide text"這麼清楚你可以因爲隱藏文字而受到處罰。但是,引擎可能足夠聰明以區分有效和無效的隱藏。
我擔心隱藏的標籤是否有保證或搜索引擎有區別?去年以來js和css
你能評價我的答案嗎?在過去的幾天裏,我用你提到的參考文獻進行了編輯。 –