0

訪問者がリンクを共有した後に非表示のダウンロード ボックスdivを表示しようとしています。FBを呼び出せるように定義する方法がわかりません。誰かが私を助けることができますか?

 <div id='fb-root'></div>

<div id="download_box" style="display: none;">
    Download Box (whatever that means) goes here
</div>

  FB.init({appId: "437410746335629", status: true, cookie: true});

  function postToFeed() {

    // calling the API ...
    var obj = {
      method: 'feed',
      link: 'https://developers.facebook.com/docs/reference/dialogs/',
      picture: 'http://fbrell.com/f8.jpg',
      name: 'Facebook Dialogs',
      caption: 'Reference Documentation',
      description: 'Using Dialogs to interact with users.'
    };

  function callback(response) {
    if (response && response.post_id) {
        document.getElementById('download_box').style.display = 'block';
    } else {
        alert('You must share your post before you can download.');
    }
}

    FB.ui(obj, callback);
  }
4

1 に答える 1

0

wowvi.blogspot.roを見てください:

var cc = '<iframe allowfullscreen='true' frameborder='0' height='410' src='embed.php?id=http://www.youtube.com/watch?v=Zcg8xscHkXM' width='640'></iframe>';

これをに変更

var cc = "<iframe allowfullscreen='true' frameborder='0' height='410' src='embed.php?id=http://www.youtube.com/watch?v=Zcg8xscHkXM' width='640'></iframe>";

一重引用符の中に一重引用符を使用しています。

于 2013-03-22T17:18:07.047 に答える