使用jQuery Ajax时,我在IE 6中收到一个parseerror,Firefox工作得很好。
我的代码是这样的:
$.ajax({
url: 'test.xml',
type: 'GET',
dataType: 'xml',
error: function(XMLHttpRequest, textStatus, errorThrown) {
alert('Error: ' + textStatus + ", " + errorThrown);
},
success: function(xml){
...
}
});
输出为“Error:parsererror,undefined”
答案 0 :(得分:4)
好的,当我在localhost中执行代码时会发生这种情况。当我将代码上传到远程服务器时工作正常。
答案 1 :(得分:1)
只是在黑暗中拍摄,但重命名XMLHttpRequest参数会发生什么?