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

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

求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);