在javascript中单击按钮后如何自动关闭此窗口?

时间:2015-03-29 02:12:28

标签: javascript popupwindow auto-close

我在javascript中创建了这个按钮,当它被点击时,它打开了一个小的twitter弹出窗口,允许用户关注我。现在我想要的是这个弹出窗口在用户点击后关闭"关注"。我附上了弹出窗口的图片,以便您可以获得更多想法。这是我试图修改的那个窗口的脚本。

<script type="text/javascript" charset="utf-8">

window.onload=function(){ 
twttr.events.bind('follow', function(event) {
    var followed_user_id = event.data.user_id;
    var followed_screen_name = event.data.screen_name;
    //alert('you have followed " '+followed_screen_name+'"');// Uncomment it for the javascript popup to activate
    document.getElementById('download').style.display = 'block';
});


twttr.events.bind('unfollow', function(event) {
    //alert('Unfollowed now'); // Uncomment it for the javascript popup to activate
    document.getElementById('download').style.display = 'none';
});

}
</script>

我不知道在点击跟随按钮后如何插入使其关闭的代码的方式或位置。如果您熟悉这种情况,我将非常感谢任何信息。在此先感谢:)

0 个答案:

没有答案