我有一个适用于 jQuery Mobile(完整的 ajax 导航)的 web 应用程序。我在 jQueryMobile 的pageinit事件(每个页面调用)中初始化 Facebook SDK 。
jQuery(document).on('pageinit', function (event) {
// load FB SDK
window.fbAsyncInit = function() {
FB.init({
appId : 'MYAPPID',
channelUrl : '//URL/channel.html',
status : true,
xfbml : true,
oauth : true
});
FB.Event.subscribe('auth.authResponseChange', getCurrentUser);
};
(function(d, s, id){
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) {return;}
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/all.js";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
// bind a button to get current user manually
$('.findme').off('click');
$('.findme').on('click', getCurrentUser);
});
function getCurrentUser(response) {
FB.api("/me", function (response) {
if (window.console && window.console.log) console.log(response.name);
});
}
并且 HTML 包含
<button class="findme">Click to get infos about me</button>
此代码适用于第一页。我更改页面(ajax 调用),它在我的第二页上不起作用。我重新加载(F5)我的第二页,它可以工作。
你见过这个问题吗?你有想法吗?