为什么fbAsyncInit没有触发?

时间:2012-05-12 15:56:07

标签: javascript html facebook-javascript-sdk

我正在尝试使用以下代码中的Facebook Javascript SDK,但是无论我在fbAsyncInit的哪个地方放置它都不会显示警报......

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://ogp.me/ns/fb#">
<head>
</head>
<body>
<div id="fb-root"></div>
<script>
  window.fbAsyncInit = function() {
    FB.init({
      appId      : '205116556256919', // App ID
      channelUrl : 'http://lolkitten.org/', // 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
     alert('loading complete');
  };

  // 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>

<fb:like send="true" width="450" show_faces="true" />

</html>

2 个答案:

答案 0 :(得分:0)

问题是我是从计算机上的本地文件运行的。因此,像(不记得确切)//connect.facebook.com/all.js这样的链接没有按照需要解决,并且找不到预期的JS。

答案 1 :(得分:0)

我在运行Chrome扩展程序“断开连接”时遇到了此问题。单击扩展名,然后单击“白名单”站点以解决问题。