サンプルコードがあります:
window.fbAsyncInit = function() {
FB.init({appId: appId, status: true, cookie: true, xfbml: true});
this.test();
};
// Load the SDK Asynchronously
(function(d){
var js, id = 'facebook-jssdk'; if (d.getElementById(id)) {return;}
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all.js";
d.getElementsByTagName('head')[0].appendChild(js);
}(document));
this.test = function() {
alert('test');
}
FB initで関数を呼び出すと、test()
結果は " TypeError: this.test is not a function
"になりますが、どのように修正しますか?