Facebook JS Client-Side Auth无法在IE中运行

时间:2012-09-12 16:20:12

标签: internet-explorer facebook-javascript-sdk

我试图让Facebook Javascript SDK客户端身份验证工作,并且它在Firefox中这样做,但它在IE中失败了。在IE 8中,当我单击登录按钮时,根本没有任何事情发生。没有覆盖,没有来自IE的警报,没有任何东西。该代码是由Facebook提供的示例代码,很少有修改方式。

<!DOCTYPE html>
<html>
  <html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://ogp.me/ns/fb#">
    <title>Facebook Client-side Authentication Example</title>
  </head>
  <body>
    <div id="fb-root"></div>
    <script>
      // 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));

      // Init the SDK upon load
      window.fbAsyncInit = function() {
        FB.init({
          appId      : 'xxxxxxxxxxxxxxx', // App ID
          channelUrl : '//thejspot.ws/channel.html', // Path to your Channel File
          status     : true, // check login status
          cookie     : true, // enable cookies to allow the server to access the session
          xfbml      : true  // parse XFBML
        });

        // listen for and handle auth.statusChange events
        FB.Event.subscribe('auth.statusChange', function(response) {
          if (response.authResponse) {
            // user has auth'd your app and is logged into Facebook
            FB.api('/me', function(me){
              if (me.name) {
                document.getElementById('auth-displayname').innerHTML = me.name;
                oFormObject = document.forms['ri_form'];
                oFormObject.elements['full_name'].value = me.name;
                oFormObject.elements['email_address_'].value = me.email;
                oFormObject.elements['gender'].value = me.gender;
                oFormObject.elements['locale'].value = me.locale;
              }
            })
            document.getElementById('auth-loggedout').style.display = 'none';
            document.getElementById('auth-loggedin').style.display = 'block';
          } else {
            // user has not auth'd your app, or is not logged into Facebook
            document.getElementById('auth-loggedout').style.display = 'block';
            document.getElementById('auth-loggedin').style.display = 'none';
          }
        });

        // respond to clicks on the login and logout links
        document.getElementById('auth-loginlink').addEventListener('click', function(){
          FB.login(function(response) {}, {scope: 'email'});
        });
        document.getElementById('auth-logoutlink').addEventListener('click', function(){
          FB.logout();
        }); 
      }
    </script>
    <h1>Facebook Client-side Authentication Example</h1>
      <div id="auth-status">
        <div id="auth-loggedout">
          <a href="#" id="auth-loginlink">Login</a>
        </div>
        <div id="auth-loggedin" style="display:none">
          <span id="auth-displayname"></span> (<a href="#" id="auth-logoutlink">logout</a>)<br /><br />
          <h3>Facebook Attributes</h3>
      </div>
    </div>
    <form action="" method="get" id="ri_form">
              Full Name: <input name="full_name" type="text"><br />
              Email: <input name="email_address_" type="text"><br />
              Gender: <input name="gender" type="text"><br />
              Locale: <input name="locale" type="text"><br />
          </form>
  </body>
</html>

任何人都可以告诉我我可能做错了什么吗? 谢谢!

1 个答案:

答案 0 :(得分:1)

首先:您认为在您的网页中使用两个 <html>元素会有什么好处?删除第一个,这是胡说八道。

  

在IE 8中,当我点击登录按钮时,根本没有任何事情发生。

IE&LT; 9不支持addEventListener将事件处理程序绑定到DOM元素。因此,除非您还嵌入了一些将此功能添加到旧IE(我没有看到)的库,否则您的代码无法以这种方式工作......并且实际上应该在JS控制台中引发错误。 (你甚至懒得去看那里吗?)