日期:2014-05-18  浏览次数:20372 次

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中搜的,