我正在尝试在页面上实现 XFBML 评论框。它可以在 Firefox 和 Chrome 中运行,但在 Internet Explorer 8 中只是偶尔出现。
当页面点击FB.XFBML.parse('fb-stuff');
. 在尝试解析 XFBML 之前,是否需要检查 Facebook Connect 脚本是否已完成加载?
<script type="text/javascript">
window.fbAsyncInit = function() {
FB.init({
appId : '117378991625799',
status : false, // check login status
cookie : false, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});
};
(function() {
var e = document.createElement('script');
e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
e.async = true;
document.getElementById('fb-root').appendChild(e);
FB.XFBML.parse('fb-stuff');
}());
</script>