Google 的抓取工具是否索引异步加载的元素?

发布于 2024-12-07 13:51:42 字数 1469 浏览 2 评论 0原文

我已经为网站构建了一些在页面加载后异步加载的小部件:

<html>
    <head>...</head>
    <body>
        <div>...</div>

        <script type="text/javascript">
            (function(){
                var ns = document.createElement("script");
                ns.type = "text/javascript"; 
                ns.async = true;
                ns.src = "http://mydomain.com/myjavascript.js";
                var s = document.getElementsByTagName("script")[0];
                s.parentNode.insertBefore(ns, s);
            })();
        </script>
    </body>
</html>

是否有办法通知 Google 爬虫仅在页面完全加载后(异步 JavaScript 修改 HTML 后)才索引页面?

I've built some widget for websites which is asynchronously loaded after the page is loaded:

<html>
    <head>...</head>
    <body>
        <div>...</div>

        <script type="text/javascript">
            (function(){
                var ns = document.createElement("script");
                ns.type = "text/javascript"; 
                ns.async = true;
                ns.src = "http://mydomain.com/myjavascript.js";
                var s = document.getElementsByTagName("script")[0];
                s.parentNode.insertBefore(ns, s);
            })();
        </script>
    </body>
</html>

Is there anyway to notify Google's crawler to index the page only after the page is fully loaded (after the async JavaScript modified the HTML)?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

怎樣才叫好 2024-12-14 13:51:42

不可以。您必须为异步内容设置静态镜像页面。参见这里:
http://code.google.com/web/ajaxcrawling/docs/getting -started.html

No. You have to set up static mirror pages for asynchronous content. See here:
http://code.google.com/web/ajaxcrawling/docs/getting-started.html

爱要勇敢去追 2024-12-14 13:51:42

从那时起事情就发生了变化:

  • Google 会抓取由 JavaScript 注入的所有内容并为其编制索引。
  • Google 甚至在 SERP 中显示基于异步的结果
    注入的内容。
  • Google 可以处理来自 httpRequest() 的内容。

(...)

  • 动态更新元
    元素也会被抓取并建立索引。

来源:http:// www.centrical.com/test/google-json-ld-and-javascript-crawling-and-indexing-test.html

Things have evolved since then:

  • Google crawls and indexes all content that was injected by javascript.
  • Google even shows results in the SERP that are based on asynchronously
    injected content.
  • Google can handle content from httpRequest().

(...)

  • Dynamically updated meta
    elements get crawled and indexed, too.

Source: http://www.centrical.com/test/google-json-ld-and-javascript-crawling-and-indexing-test.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文