Facebook all.js 是否需要包含在任何之前对于 IE 8?

发布于 2024-10-30 22:47:02 字数 232 浏览 0 评论 0原文

Facebook Like 按钮在 IE 8 中突然停止工作。减少代码表明 IE 8 似乎要求 Facebook 的 all.js 包含在任何 标签?

Chrome 或 Firefox 甚至 IE 9 中都不需要这样做。这是真的吗?我想可能有一点我把它放在了 js 之前,它也起作用了?有谁知道或以前有过这样的经历吗?

The Facebook Like button all of a sudden stopped working in IE 8. And reducing the code shows that it seems like IE 8 requires the all.js of Facebook be included before any <fb:like> tags?

This is not required in Chrome or Firefox, or even IE 9. Is it true? I thought there might be one point I put it before the js and it worked too? Does anyone know or have this experience previously?

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

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

发布评论

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

评论(1

您的好友蓝忘机已上羡 2024-11-06 22:47:02

您希望尽早加载 all.js,但可以异步完成。使用 Facebook 的最佳实践,可以通过以下方式加载 all.js:

  <div id="fb-root"></div>
  <script>
    window.fbAsyncInit = function() {
      FB.init({
        appId: '...',
        xfbml: true
      });
    };

    (function() {
      var e = document.createElement('script');
      e.async = true;
      e.src = document.location.protocol +
        '//connect.facebook.net/en_US/all.js';
      document.getElementById('fb-root').appendChild(e);
    }());
  </script>

更多详细信息,请访问 官方文档

You want to load all.js early but it can be done asynchronously. Using the best practice from Facebook, loading all.js can be done this way:

  <div id="fb-root"></div>
  <script>
    window.fbAsyncInit = function() {
      FB.init({
        appId: '...',
        xfbml: true
      });
    };

    (function() {
      var e = document.createElement('script');
      e.async = true;
      e.src = document.location.protocol +
        '//connect.facebook.net/en_US/all.js';
      document.getElementById('fb-root').appendChild(e);
    }());
  </script>

More detail at the official documentation

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