我在 Internet Explorer 中有以下 jQuery 代码和一个令人心碎的问题,还有其他地方......
$.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.php 文件与 test.html 文件一样的测试内容!!!使用 html 文件,脚本可以工作,但我想使用 ajax 请求运行 php 脚本......有什么问题?
谢谢你!