为什么在直接访问jQuery中的数据时,responseText变为未定义?

时间:2017-01-04 17:54:16

标签: javascript php jquery jquery-plugins

根据我的情况,我希望通过在jQuery中提供以下代码来获得响应数据,该响应数据作为responseText。

var account_id = jQuery('input[name=account_id]').val();
console.log('Account Id is :: ' + account_id);

var recordData = $.getJSON("http://localhost/vtigercrm/index.php?module=Inventory&action=GetAccount&record=" + account_id, function(data) {
    recordData = data;
}); 
console.log(recordData);

这是我在浏览器控制台中看到的控制台输出。

enter image description here

在浏览器控制台中,我可以看到responseText上有一个数据。我怎样才能获得该responseText数据。

当我尝试使用

进行访问时
  

recordData.responseText

我的数据未定义。

有人可以帮助我访问responseText吗?

谢谢&的问候,

0 个答案:

没有答案