ねえ、私は次の ajax POST 呼び出しを持っています:
function callAjax(what2Do)
{
jQuery.ajax({
url: "count.php?do=" + what2Do,
type: "POST",
data: "",
cache: false,
success: function(response, textStatus, jqXHR){
alert('done!');
},
error: function(jqXHR, textStatus, errorThrown){
alert(
"The following error occured: "+
textStatus, errorThrown
);
}
});
}
そして、私はエラーThe following error occurred: error when running the page in iE9 を取得し続けますが、他のすべてのブラウザーでは正常に動作します。
IEで動作しないために何が欠けているのでしょうか? リターンは単純なテキストです。