单击按钮显示警报

时间:2011-09-12 03:33:24

标签: javascript jquery facebook embed alert

我正在使用默认的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/

谢谢!

1 个答案:

答案 0 :(得分:4)

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

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);
   }
);