5

There are many ways to display a page only when content is loaded, but what is the best way regarding SEO ?

Contents are : pictures, css, js, etc.

Is Google bot getting smart enough to not-index pages that have tricks like those ?

  • CSS <body> display none.
  • Javascript add display none, on_event_i_am_ready , remove display none.
  • <body> margin -20000px.
  • Full white div z-index > body z-index.
  • body height & width to 0px with overflow: hidden;
  • And much more solutions...

Stackoverflow: Solution two, Solution one, etc..

4

1 回答 1

2

最好的办法肯定是不要这样做。如果您关心 SEO,只需优化您的页面以快速运行,并且不需要一些预加载消息。避免使用任何(黑色)魔法。

仅在极少数情况下使用这些类型的消息可能是个好主意,并且通常仅适用于已经不适合搜索的应用程序,例如您的电子邮件客户端。更好地利用您的时间来改善您的页面加载,而不是浪费更多的字节。

于 2013-06-08T03:09:30.610 回答