我通过JQUERY使用AJAX,但是在FF中能够正常提交,但是在ie中没办法提交
代码如下$.ajax({
type:"POST",
url: "DoCustomerLoginAction",
cache: false,
data: params,
dataType: "json",
timeout: 10000,
error:function(event, XMLHttpRequest){
if (XMLHttpRequest == "timeout") {
alert('操作已超时,请重试!');
} else {
alert('出错了!');
}
},
success:function(json){
alert("success");
}
});
在ff中都正常的,但是在ie中没办法提交(不是取不到值,是根本进不了后台)。
在error:function中alert一下,看了下错误信息,XMLHttpRequest是null。百思不得其解,给点建议吧