2011-04-06 38 views

回答

0

您想盡早加載all.js,但可以異步完成。使用來自Facebook的最佳實踐,裝載all.js可以做到這樣:

<div id="fb-root"></div> 
    <script> 
    window.fbAsyncInit = function() { 
     FB.init({ 
     appId: '...', 
     xfbml: true 
     }); 
    }; 

    (function() { 
     var e = document.createElement('script'); 
     e.async = true; 
     e.src = document.location.protocol + 
     '//connect.facebook.net/en_US/all.js'; 
     document.getElementById('fb-root').appendChild(e); 
    }()); 
    </script> 

更多細節在official documentation

相關問題