我正在尝试获取 AJAX 成功后返回的数据。但它返回了我在 PHP 文件中回显的整个 Javascript。我真正需要的只是我的 JS 在页面上打印的文字。
这是Javascript代码 -
window.fbAsyncInit = function() {
FB.init({appId: 'xxxxxxxxxxx', status: true, cookie: true});
FB.getLoginStatus(function(o) {
if (!o && o.status) return;
if (o.status == 'connected') {
document.write("connected");
} else if (o.status == 'not_authorized') {
document.write("unauthorized");
} else {
document.write("loggedOut");
}
});
};
(function() {
var e = document.createElement('script'); e.async = true;
e.src = document.location.protocol +
'//connect.facebook.net/en_US/all.js';
document.getElementById('fb-root').appendChild(e);
}());
在将返回的数据与AJAX 成功进行比较后,我想比较返回的数据(data== connected, not_authorized, loggedOut)
并显示相应的 html 元素。if..else
如果有人帮助我解决这个问题,我将不胜感激。
谢谢你。