1

昨日以来、Facebookからのコメントの完全なウィジェットを見ることができません。私は記事のあるウェブサイトを持っています、そしてすべての記事のために、fbコメントウィジェット。まず、レイヤーなどの問題だと思っていたのですが、新しいファイルを作成して同じ問題が発生しています。コードは次のとおりです。

<html>
<head>
</head>
<body>
<div id="fb-root"></div>
<script>(function(d, s, id) {
  var js, fjs = d.getElementsByTagName(s)[0];
  if (d.getElementById(id)) return;
  js = d.createElement(s); js.id = id;
  js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&appId=386320764714835";
  fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>

<div class="fb-comments" data-href="http://steagu.ro/index.php?id=2806&amp;cat=1" data-num-posts="5" data-width="630"></div>
</body>
</html>

ここで実際の動作を確認できます。Firefox16.0.1とIE9.0.7でテストしました

何が問題なのか分かりますか?

4

1 に答える 1

0

この行を含める:

<html xmlns:fb="http://ogp.me/ns/fb#">

このコードを使用して確認してください

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<html xmlns:fb="http://ogp.me/ns/fb#">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>

<body>
<div id="fb-root"></div>
<script>(function(d, s, id) {
  var js, fjs = d.getElementsByTagName(s)[0];
  if (d.getElementById(id)) return;
  js = d.createElement(s); js.id = id;
  js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&appId=386320764714835";
  fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>

<div class="fb-comments" data-href="http://steagu.ro/index.php?id=2806&amp;cat=1" data-num-posts="25" data-width="630"></div>

</body>
</html>
于 2012-10-24T09:09:40.417 に答える