Likebox 事件(iframe)

发布于 2024-12-23 10:59:03 字数 674 浏览 1 评论 0原文

我在 iframe 中使用 Likebox

<iframe src="//www.facebook.com/plugins/likebox.php?href=
  <?=Facebook::GetConfig('LikeUrl')?>
&amp;width=292&amp;height=290&amp;colorscheme=light&amp;
show_faces=true&amp;border_color&amp;stream=false&amp;
header=true&amp;
appId=<?=Facebook::GetConfig('appId')?>" 
scrolling="no" frameborder="0" style="border:none; overflow:hidden; 
width:292px; height:290px;" allowTransparency="true" id="fbframe"></iframe>

我怎么知道用户是否按下了 Like 按钮,因为

FB.Event.subscribe('edge.create', function(targetUrl) {
  alert('liked ');
  });

不起作用

im using likebox in iframe

<iframe src="//www.facebook.com/plugins/likebox.php?href=
  <?=Facebook::GetConfig('LikeUrl')?>
&width=292&height=290&colorscheme=light&
show_faces=true&border_color&stream=false&
header=true&
appId=<?=Facebook::GetConfig('appId')?>" 
scrolling="no" frameborder="0" style="border:none; overflow:hidden; 
width:292px; height:290px;" allowTransparency="true" id="fbframe"></iframe>

how can I know have user pressed like button or no , cuz

FB.Event.subscribe('edge.create', function(targetUrl) {
  alert('liked ');
  });

does not works

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

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

发布评论

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

评论(1

烟凡古楼 2024-12-30 10:59:03

edge.createedge.remove 事件仅针对非 Iframe 版本的 Like 按钮(XFBML 和 HTML5)触发

您可以轻松地将 Iframe 版本更改为其他版本:

<fb:like-box href="<?=Facebook::GetConfig('LikeUrl')?>" width="292" height="290" 
             show_faces="true" stream="false" header="true"></fb:like-box>

edge.create and edge.remove events fired only for non Iframe version of Like Button (XFBML and HTML5)

You can easily change your Iframe version other:

<fb:like-box href="<?=Facebook::GetConfig('LikeUrl')?>" width="292" height="290" 
             show_faces="true" stream="false" header="true"></fb:like-box>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文