0

我正在尝试在以下代码中使用 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>
4

2 回答 2

1

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

于 2017-02-07T22:29:27.807 回答
0

问题是我是从计算机上的本地文件运行它。结果,像(不记得确切)这样的链接//connect.facebook.com/all.js没有按要求解析,也没有找到预期的 JS。

于 2012-05-13T10:56:45.697 回答