给出ajax回调,例如......
function showResponse(responseText, statusText, xhr) { }
如何从xhr
对象获取状态/响应代码?
alert(xhr); // [object]
alert(xhr.status); // undefined
alert(xhr.statusText); // undefined
答案 0 :(得分:1)
您可以使用dojo框架,然后使用
输出xhr对象console.dir(xhr)
否则你可以用xhr对象打印所有元素,每个循环都有一个
for (var n in xhr) {
alert(n + " => " + xhr[n]);
}
请注意,我不尝试此代码,因此代码可能包含错误; - )