ajax函数回调中的jQuery xhr对象属性

时间:2010-12-10 09:15:57

标签: jquery xmlhttprequest httpresponse

给出ajax回调,例如......

function showResponse(responseText, statusText, xhr) { }

如何从xhr对象获取状态/响应代码?

alert(xhr);              // [object]
alert(xhr.status);       // undefined
alert(xhr.statusText);   // undefined

1 个答案:

答案 0 :(得分:1)

您可以使用dojo框架,然后使用

输出xhr对象
console.dir(xhr)

否则你可以用xhr对象打印所有元素,每个循环都有一个

for (var n in xhr) {
  alert(n + " => " + xhr[n]);
}

请注意,我不尝试此代码,因此代码可能包含错误; - )