Facebook fb正在加载未隐藏的图像

Facebook fb正在加载未隐藏的图像,facebook,fbml,xfbml,fbjs,Facebook,Fbml,Xfbml,Fbjs,我在我的网站上有一个fb注册按钮的普通实现,但加载图形不会隐藏 <fb:registration scope="email,user_birthday,publish_stream" width="520" fields="[ {'name':'name'}, {'name':'uname', description:'username', 'type':'text'}, {'name':'email'} ]" redi

我在我的网站上有一个fb注册按钮的普通实现,但加载图形不会隐藏

    <fb:registration  scope="email,user_birthday,publish_stream" width="520"  fields="[
        {'name':'name'},
        {'name':'uname', description:'username', 'type':'text'}, 
        {'name':'email'}
    ]" redirect-uri="myDomain"></fb:registration>



    <script>
    window.fbAsyncInit = function() {
      FB.init({
        appId      : myAppId, // App ID
        channelUrl : '//myDomain/channel.html', // Channel File
        status     : true, // check login status
        cookie     : true, // enable cookies to allow the server to access the session
        xfbml      : true  // parse XFBML
      });

      // Additional initialization code here
    };


    // Load the SDK Asynchronously

    (function(d){
       var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
       if (d.getElementById(id)) {return;}
       js = d.createElement('script'); js.id = id; js.async = true;
       js.src = "//connect.facebook.net/en_US/all.js";
       ref.parentNode.insertBefore(js, ref);
     }(document));

    </script>

window.fbAsyninit=函数(){
FB.init({
appId:myAppId,//appId
channelUrl:'//myDomain/channel.html',//通道文件
状态:true,//检查登录状态
cookie:true,//启用cookie以允许服务器访问会话
xfbml:true//解析xfbml
});
//这里有额外的初始化代码
};
//异步加载SDK
(职能(d){
var js,id='facebook jssdk',ref=d.getElementsByTagName('script')[0];
if(d.getElementById(id)){return;}
js=d.createElement('script');js.id=id;js.async=true;
js.src=“//connect.facebook.net/en_US/all.js”;
ref.parentNode.insertBefore(js,ref);
}(文件);

似乎是XFBML版本的注册插件的一个bug。使用iFrame版本:

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8" />
    <title></title>
  </head>
  <body>
    <div id="fb-root"></div>
    <script src="https://connect.facebook.net/en_US/all.js#appId=YOUR_APP_ID"></script>
      <iframe src="https://www.facebook.com/plugins/registration?
            client_id=YOUR_APP_ID&
            redirect_uri=https%3A%2F%2FYOUR_DOMAIN.com&
            fields=[
              {'name':'name'},
              {'name':'uname', 'description':'username', 'type':'text'}, 
              {'name':'email'}
            ]"
        scrolling="auto"
        frameborder="no"
        style="border:none"
        allowTransparency="true"
        height="520"
        width="520">
      </iframe>
  </body>
</html>

说明:'username'
应该是
'description':'username'