3

当用户单击“关注”按钮时,我想在页面上添加一条警报消息。我怎样才能做到这一点?

这是代码:

<a href="https://twitter.com/prajapat2010" class="twitter-follow-button"
data-show-count="false" data-dnt="true">Follow @prajapat2010</a>
<script>
    ! function (d, s, id) {
        var js, fjs = d.getElementsByTagName(s)[0];
        if (!d.getElementById(id)) {
            js = d.createElement(s);
            js.id = id;
            js.src = "//platform.twitter.com/widgets.js";
            fjs.parentNode.insertBefore(js, fjs);
        }
    }(document, "script", "twitter-wjs");
</script>
4

1 回答 1

2

您可以使用 Twitter 事件回调来实现此目的。

//Here is you normal twitter button code

//My custom function
function mycustom() {
  alert('this is a test')
}

//Bind the custom function with twitter event
twttr.ready(function (twttr) {
  twttr.events.bind('click', mycustom);
});

更多活动请阅读官方文档:https ://dev.twitter.com/docs/intents/events

于 2013-01-20T03:48:42.160 回答