代码如下:
typeof window.jQuery === "undefined" // return false or ture
用jQuery变量来检测是否联网
var i = new Image();
i.onload = doConnectFunction;
i.onerror = doNotConnectFunction;
i.src = 'http://su.bdimg.com/static/superplus/img/logo_white.png?d=' + escape(Date());
i.onload = doConnectFunction;
i.onerror = doNotConnectFunction;
i.src = 'http://su.bdimg.com/static/superplus/img/logo_white.png?d=' + escape(Date());
加载网络资源的问题就是检测的互联网,如果是局域网检测是无能为力了。 这时候需要一个更好的解决方案,就要用到navigator.onLine,这个属性比较坑的就是浏览器兼容,chrome、Safari 都完美支持,IE7以上是支持的。火狐和IE6比较坑,只有在浏览器“脱机状态”下才返回false,其他都返回true。掐了网线都是true,Opera直接不支持了。
所以还得加一个兼容方法:给location.hostname地址发一个http头请求,代码如下:
= 200 && xhr.status < 300 || xhr.status === 304 );
} catch (error) {
return false;
}
里面一个要注意的就是open方法的第三个参数要传false,必须是同步请求。
总结:支持navigator.onLine的浏览器就用navigator.onLine,不支持的就发一个http头请求。
原创文章,转载请注明: 转载自
原文链接:https://www.f2er.com/js/57655.html