-1

我想显示来自 twitter 的关注者,如下所示:

在此处输入图像描述
所以,当我用任何用户名填充文本字段时,关注者的结果将显示在底部

这是我的代码:

  • 索引.html

    <html>
    <head>
    <start twitter fan box –&gt;
    <script type="text/javascript" src="script.js"></script>
    <title></title>
    </head>
    <body>
    <div id="twitterfanbox">
    <script type="text/javascript">fanbox_init("your_username");
    </script type="text">
    </start>
    </div id="twitterfanbox"> 
    </body>
    </html> 
    
  • 脚本.js

function fanbox_init(screen_name){document.getElementById('twitterfanbox').innerHTML=

    '\<iframe name=\"fbfanIFrame_0\" frameborder=\"0\" allowtransparency=\"true\"
src=\"http://s.moopz.com/connect.html?user='+screen_name+'\" class=\"FB_SERVER_IFRAME\" scrolling=\"no\" style=\"width: 300px; height: 250px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-width: initial; border-color: initial; \"\>\<\/iframe\>';}
4

1 回答 1

1

您现在总是将字符串文字 "your_username" 传递给 fanbox_init: fanbox_init("your_username")

尝试fanbox_init(prompt("what is your Twitter username?"))- 或作为两个陈述:

var username = prompt("what is your Twitter username?");
fanbox_init(username);

这将显示一个提示(一个允许用户输入一行文本的弹出框)并将该值传递给fanbox_init.

于 2013-01-13T18:23:07.157 回答