AJAX将成功返回整个html页面而不是实际数据。
这是JS代码 -
<script>
window.fbAsyncInit = function() {
FB.init({appId: '**********', status: true, cookie: true,xfbml: true});
FB.getLoginStatus(function(o) {
if (!o && o.status) return;
if (o.status == 'connected') {
document.write("<php echo "connected" ?>");
} else if (o.status == 'not_authorized') {
document.write("<?php echo "unauthorized" ?>");
} else {
document.write("<php echo "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);
}());
</script>
我需要的只是在页面上打印的数据,例如“connected”,“unauthorized”,“loggedOut”。