2014-12-26 43 views

回答

0

不工作的變體,但沒有錯誤,沒有按鈕分享到:

FB.ui({ 
     method: 'share', 
     href: getUrlA(this) 
    }, function (response) { 

    }); 

工作的變體:

FB.login(function(response) { 
    FB.ui({ 
     method: 'share', 
     href: getUrlA(this) 
    }, function (response) { 

    }); 
});