当前位置: 代码迷 >> ASP.NET >> xmlHttp.status == 1223 ?该如何处理
  详细解决方案

xmlHttp.status == 1223 ?该如何处理

热度:4692   发布时间:2013-02-25 00:00:00.0
xmlHttp.status == 1223 ?
怎么会等于1223
1223又代表什么?郁闷ing......

------解决方案--------------------------------------------------------
1223 is apparently a bug in IE
------解决方案--------------------------------------------------------
// Safari is braindead here: any status code other than 200 is converted to undefined
// IE invents its own 1223 status code
if ( 204 == xmlhttp.status || xmlhttp.status == null || xmlhttp.status == 1223 ) {
if ( null != f )


google中搜的,
  相关解决方案