次の jQuery.ajax リクエストを実行しようとしていますが、奇妙な問題に直面しています。
IE9 を使用してこのリクエストを送信すると、送信したにもかかわらず contentType パラメータが欠落しています。クロムではリクエストは問題ありません。
$.ajax({
type: "POST",
contentType: "application/x-www-form-urlencoded",
url: this.AgentServiceUrl + "/" + methodName,
data: data,
async: true,
success: function (xml, textStatus) { if (successHandler != null) successHandler(xml, textStatus); },
error: function (xmlHttpRequest, textStatus, errorThrown) { if (errorHandler != null) errorHandler(state, xmlHttpRequest, textStatus, errorThrown); }
});
jQuery 2.0.2 と jQuery.XDomainRequest.js を使用してクロス ドメイン リクエストを処理しています。
私に何ができる??