我有一個示例代碼:使用javascript在facebook init上調用函數時出錯?
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
」,如何解決呢?
@AndrewII改變的JavaScript的拼寫不是整個編輯一個足夠大的變化。請住手。 – tbodt