我有这个代码(来自 FB 开发者文档)
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({
appId: 'xxxxxxxxx',
channelUrl: 'xxxxxxx',
status: true,
cookie: true,
xfbml: true,
oauth: true
});
FB.Event.subscribe('auth.authResponseChange',function(response) {
if (response.status === 'connected') {
FB.api('/me', function(response) {
console.log('Good to see you, ' + response.name + '.');
});
} else if (response.status === 'not_authorized') {
//FB.login();
} else {
}
});
};
// 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>
上面的代码在 index.html 中,我正在通过 ajax 调用动态加载 index.html。
我面临的问题fbAsyncInit
是动态加载 index.html 时不会触发。
知道如何解决这个问题吗?