当有人按下新的 Facebook 订阅按钮时,我如何触发事件?我可以使用上面的代码使用“喜欢”按钮来做到这一点,所以我认为它与订阅按钮类似。
<div id="fb-root"></div>
<script type="text/javascript">
window.fbAsyncInit = function() {
FB.init({appId: 'App_ID', status: true, cookie: true, xfbml: true});
FB.Event.subscribe('edge.create', function(href, widget) {
alert('You just clicked the like button');
});
};
(function() {
var e = document.createElement('script');
e.type = 'text/javascript';
e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
e.async = true;
document.getElementById('fb-root').appendChild(e);
}());
</script>
当用户喜欢一个页面时,'edge.create' 会触发一个事件,因此我可以获得响应,并向用户显示警报。我已经搜索了一段时间,找不到使用“订阅”按钮的类似方法。
有没有人这样做过?