1

我正在尝试获取 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

如果有人帮助我解决这个问题,我将不胜感激。

谢谢你。

4

1 回答 1

0

您的问题有点模棱两可,我建议发布整个上下文。

无论如何,我会冒险猜测。似乎您试图在成功的 AJAX 调用之后但在 PHP 文件中执行 Javascript。那是行不通的,因为 JS 只在浏览器上下文中执行。您可以从 PHP 执行并返回纯字符串,也可以使用 JSONP 和粘贴在回调中的函数。

于 2013-06-06T20:55:23.370 回答