前端之家收集整理的这篇文章主要介绍了
javascript – 点击按钮显示提醒,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用默认的Facebook嵌入代码:
最佳答案
您必须
订阅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);
}
);
原文链接:https://www.f2er.com/jquery/427991.html