我有以下代码适用于 Chrome 和 Firefox,但不适用于 IE9
$.ajax({
type : type,
url : url,
data : reqData,
crossDomain: true,
cache: false,
dataType : dataType,
contentType : contentType,
success : successFunction
}).fail(function() {
showError("IE9!");
});
type 是 POST,dataType 是 JSON,contentType 是 application/json 其他参数都正确
我试过删除 contentType,删除缓存,将缓存设置为 true,似乎没有任何效果
有什么想法吗?提前致谢