私は次のjQueryコードを持っており、Internet Explorerには気が遠くなるような問題があります.
$.ajax({
type: "POST",
url: "test.php",
//url: "test.html",
dataType: "text",
cache: false,
error:function(xhr, status, errorThrown) {
alert(errorThrown+" -- "+status+" -- "+xhr.statusText);
},
success:function(callback) {
alert("Success, also in IE");
},
async: false
}).responseText;
私の問題は、IE が test.html ファイルのような同じテスト コンテンツを含む test.php ファイルを "受け入れない" ことです!!! html ファイルではスクリプトは機能しますが、ajax リクエストを使用して php スクリプトを実行したいのですが、何が問題なのですか?
ありがとう!