jQuery load and SEO
I'm developing a web app which use jQuery's ajax load function to load content from an XML file. Is it true that web crawlers don't开发者_开发知识库 execute JavaScript when crawling, and if so, how can I combat this?
Yes crawlers knows nothing about javascript, for SEO it is better to load important information of your web pages when the page loads in normal way.
for combat with previous problem you can create a hidden link, or a link with no content referring to the web service you are calling on the startup, cause web crawlers visit links but I don't recommend this method
What about this - http://code.google.com/web/ajaxcrawling/index.html ?
精彩评论