首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

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

2012-02-20 
xmlHttp.status 1223 ?怎么会等于12231223又代表什么?郁闷ing......[解决办法]1223 is apparently a bu

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

热点排行