我正在使用 jQuery Mobile。
我的移动到details
div的代码::
<a href="#details" data-ajax="true" data-transition="pop" data-role="button" data-inline="false" data-icon="info">Go To Details</a>
现在,我想通过 Facebook 对用户进行身份验证。
所以我申请了::
<a href="javascript:userLogin()" data-ajax="true" data-transition="pop" data-role="button" data-inline="false" data-icon="info"> Login with Faceook </a>
身份验证的函数调用
function userLogin() {
FB.login(
function(response) {
if (response.authResponse) {
alert('logged in');
FB.api('/me', function(response) {
alert("Welcome " + response.name);
});
} else {
alert('not logged in');
}
},
{ scope: "email" }
);
}
身份验证后,我得到了有效的用户响应。
现在我想导航到那个details
div。
那么,成功登录后如何实现该ajax代码?
任何建议将不胜感激。
谢谢。