我正在使用ajax调用在服务器上发布数据,它似乎在Mozilla和Chrome中运行,但它在IE中无效。我使用下面的代码
$.ajax({
type: 'POST',
url: 'https://xxxxxx',
dataType: 'json',
data: data,
processData: false,
contentType: 'application/json',
crossDomain: true,
xhrFields: {
withCredentials: true
},
success: success,
error:error
});
每次我在IE控制台上遇到以下错误 XMLHttpRequest:网络错误0x80070005,访问被拒绝。
请帮助!!