fb:就像与当前页面不同的页面

发布于 2024-11-09 15:56:25 字数 890 浏览 0 评论 0原文

我正在使用 标签为我的网站生成类似按钮,我使用它是为了跟踪用户何时喜欢或不喜欢某个页面。

由于某种原因,“赞”按钮仅在您喜欢的页面上显示时才起作用。

我对其他页面有类似的按钮,但除非我使用 模型,否则它们无法正常工作。这是为什么呢?

当您单击“赞”按钮时,它会成功连接到 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 技术交流群。

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

发布评论

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

评论(1

分開簡單 2024-11-16 15:56:25

来自 Facebook 开发者文档 (http://developers.facebook.com/docs/reference/plugins/like/):

有两个“赞”按钮
实现:XFBML 和 Iframe。这
XFBML 版本更通用,但是
需要使用 JavaScript SDK。

您使用 FB Javascript SDK 吗?

From the Facebook developer documentation (http://developers.facebook.com/docs/reference/plugins/like/):

There are two Like button
implementations: XFBML and Iframe. The
XFBML version is more versatile, but
requires use of the JavaScript SDK.

Are you using the FB Javascript SDK?

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