单击按钮时显示警报

发布于 2024-12-04 11:01:38 字数 476 浏览 1 评论 0原文

我正在使用默认的 Facebook 嵌入代码:

<div id="fb-root"></div> 
<script src="http://connect.facebook.net/en_US/all.js#appId=176702405718664&amp;xfbml=1"> </script>
<fb:like href="http://domain.com" send="true" width="700" show_faces="false" action="recommend" font=""></fb:like>

.. 但我想在用户单击“推荐”或“发送”按钮时显示警报。请参阅此小提琴:

http://jsfiddle.net/4wB9x/1/

谢谢!

I'm using the default Facebook embed code:

<div id="fb-root"></div> 
<script src="http://connect.facebook.net/en_US/all.js#appId=176702405718664&xfbml=1"> </script>
<fb:like href="http://domain.com" send="true" width="700" show_faces="false" action="recommend" font=""></fb:like>

.. but I'd like to show an alert if the user clicks 'recommend' or 'send' buttons. Please see this fiddle:

http://jsfiddle.net/4wB9x/1/

Thanks!

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

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

发布评论

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

评论(1

帅冕 2024-12-11 11:01:38

您必须订阅 edge.create 事件,当用户单击“like”按钮时会触发该事件。

FB.Event.subscribe('edge.create',
function(response) {
    alert('You liked the URL: ' + response);
   }
);

// 对于发送,你必须使用这个

 FB.Event.subscribe('message.send',
function(response) {
    alert('You sent the URL: ' + response);
   }
); 

you will have to subscribe to the edge.create event, it gets triggered when user clicks the like button.

FB.Event.subscribe('edge.create',
function(response) {
    alert('You liked the URL: ' + response);
   }
);

// for send you will have to use this

 FB.Event.subscribe('message.send',
function(response) {
    alert('You sent the URL: ' + response);
   }
); 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文