假设某人在页面中具有“合法”隐藏的内容。
为了进一步解释这一点,想象一下:
<div id="tab-one">This is the content inside tab one</div>
<div id="tab-two">This is the content inside tab two</div>
<a href="javascript:void(0);" onclick="document.getElementById('tab-one').style.display='block';document.getElementById('tab-two').style.display='none';">Tab one</a>
<a href="javascript:void(0);" onclick="document.getElementById('tab-one').style.display='none';document.getElementById('tab-two').style.display='block';">Tab two</a>
从 seo 的角度来看,假设这些都不是为了操纵 google。事实上,“标签二”包含无垃圾邮件的相关数据,这对 seo 有何影响?
googlebot 会将“隐藏”内容编入索引并将其精简为页面内容的一部分吗?
它会以与不使用 javascript 的情况下在页面上“可见”内容相同的方式使用此内容吗?
谢谢。