Facebook all.js 是否需要包含在任何之前对于 IE 8?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您希望尽早加载 all.js,但可以异步完成。使用 Facebook 的最佳实践,可以通过以下方式加载 all.js:
更多详细信息,请访问 官方文档
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:
More detail at the official documentation