fb:就像与当前页面不同的页面
我正在使用
标签为我的网站生成类似按钮,我使用它是为了跟踪用户何时喜欢或不喜欢某个页面。
由于某种原因,“赞”按钮仅在您喜欢的页面上显示时才起作用。
我对其他页面有类似的按钮,但除非我使用 模型,否则它们无法正常工作。这是为什么呢?
当您单击“赞”按钮时,它会成功连接到 Facebook,更改“赞”计数器,然后立即将其恢复到原始状态?
我正在使用以下代码
我用它来获取 FB JS 文件:
(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);
}());
window.fbAsyncInit = function() {
FB.init({appId: 'XXXXX',
status: true,
cookie: true,
xfbml: true});
});
编辑:它们似乎可以在 Chrome 中工作,但不能在 FF 或 IE 中工作。
I am using <fb:like>
tags to generate like buttons for my website, I am using this so I can track when a user likes or dislikes a page.
For some reason the like buttons only work when they are displayed on the page you are liking.
I have like buttons for other pages but they do not work correctly unless I use the <iframe>
model. Why is this?
When you click the like button it connects to facebook successfully, changes the like counter then immediately reverses it to its original state?
I am using the following code<fb:like href="http://URL" send="false" layout="button_count" width="85" show_faces="false" font=""></fb:like>
And I use this to get the FB JS files:
(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);
}());
window.fbAsyncInit = function() {
FB.init({appId: 'XXXXX',
status: true,
cookie: true,
xfbml: true});
});
Edit: They seem to work in Chrome but not FF or IE.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来自 Facebook 开发者文档 (http://developers.facebook.com/docs/reference/plugins/like/):
您使用 FB Javascript SDK 吗?
From the Facebook developer documentation (http://developers.facebook.com/docs/reference/plugins/like/):
Are you using the FB Javascript SDK?