我在页面上有一个按钮,我抓住了事件edge.create和edge.remove。 我在Facebook开发者页面使用此代码:
<div id="fb-root"></div>
<script>
(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "http://connect.facebook.net/en_US/all.js#xfbml=1";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
window.fbAsyncInit = function() {
FB.Event.subscribe("edge.create", function(targetUrl) {
console.log("liked");
});
FB.Event.subscribe("edge.remove", function(targetUrl) {
console.log("removed");
});
}
</script>
<div class="fb-like" data-href="https://developers.facebook.com/docs/plugins/" data-layout="standard" data-action="like" data-show-faces="true" data-share="false"></div>
但是当用户点击&#34;关闭&#34; 或&#34;添加评论&#34; 时,我找不到抓住事件的方法弹出窗口中的strong>按钮。 我试过&#34; comment.create&#34;和&#34; message.send&#34;它没有用。
有没有办法捕捉这些事件?
答案 0 :(得分:0)
请参阅Marc Witteveen的回答和Catching the close or post to Facebook event of the Facebook comment box的答案,以便轮询评论对话框的高度。这对我有用。