当前位置: 代码迷 >> Ajax >> 求JQ ajax async=false时beforeSend步骤在Firefox正常,但在IE下不显示后台处理中.即所谓假死的最终解决方案
  详细解决方案

求JQ ajax async=false时beforeSend步骤在Firefox正常,但在IE下不显示后台处理中.即所谓假死的最终解决方案

热度:703   发布时间:2012-06-25 18:37:39.0
求JQ ajax async=false时beforeSend方法在Firefox正常,但在IE下不显示后台处理中...,即所谓假死的最终解决方案。
求JQ ajax async=false时beforeSend方法在Firefox正常,但在IE下不显示后台处理中...,即所谓假死的最终解决方案。


$.ajax({
  type: "POST",
  url: "/action/records.do",
async:false,  
  data: data,
beforeSend:function(){
$("span#tips").show().html("后台处理中……");
},
  success: function(items){}

------解决方案--------------------
可以试试
setTimeout('$("span#tips").show().html("后台处理中……")',1);
  相关解决方案