开发者

Google Crawling: Now parsing JavaScript results?

I have an HTML5 web site that simply displays my business card. The text on this "business card" is filled in via JavaScript.

The HTML markup for my business card page looks like:

<body>
    <div id="card">
        <name />
        <title />
        <email />
        <phone />
    </div>
</body>

When the DOM is ready, these <name&g开发者_开发问答t;, <title>, etc. elements are replaced with actual text using JavaScript.

The point of this was actually to prevent search engines from caching and indexing this private contact information of mine.

There is no meta description tag for the page at the moment.

When I type my card page's URL into Google, the results listing shows my name, title, email, etc.

The only way this is possible is if the spider that Google uses to index my page loads the JavaScript and then takes a snapshot of the document.

I didn't think Google's crawler parsed JavaScript.

What can I do to put this private information on the web and not have it publically indexed by Google?


If you don't want Google and potentially any other web crawler to NOT index your webpage, you should use the robots.txt

My guess is, Google downloads your page (for cache purposes) and then index it. By which time, the javascript in the page would have filled in your details. (This could be very wrong :D)

Now that is actually indexed by Google, you can request it to be deleted

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜