绑定到Twitter的关注事件不起作用

时间:2014-05-23 16:49:36

标签: javascript twitter

我正在尝试使用

将我的“关注”按钮绑定到某个功能
twttr.events.bind('follow', function (event) {
    alert('Followed!!!');
});

不幸的是,当我实际点击Follow,并确保我关注twitter时,该函数未被调用。

我缺少的任何东西(或者更好的调试方法)?

1 个答案:

答案 0 :(得分:0)

显然你必须将这些事件放在twttr.ready事件中:

twttr.ready(function (twttr) {
    twttr.events.bind('follow', function (event) {
        alert('Followed!!!');
    });
});

现在有效。