我需要相同的功能,经过大量搜索后发现了这个功能:
http://louisremi.com/2011/04/22/navigator-online-alternative-serverreachable/
这是文章中的代码,以防万一链接断开:
function serverReachable() {
// IE vs. standard XHR creation
var x = new ( window.ActiveXObject || XMLHttpRequest )( "Microsoft.XMLHTTP" ),
s;
x.open(
// requesting the headers is faster, and just enough
"HEAD",
// append a random string to the current hostname,
// to make sure we're not hitting the cache
window.location.href.split("?")[0] + "?" + Math.random(),
// make a synchronous request
false
);
try {
x.send();
s = x.status;
// Make sure the server is reachable
return ( s >= 200 && s < 300 || s === 304 );
}
// catch network & other problems
catch (e) {
return false;
}
}
请注意,上面的代码包括 Scott Jehl 对使用 localhost 的修复,该修复发布在评论的下方。这里是同一函数的 jQuery 版本的链接:
https://gist.github.com/scottjehl/947084
以及该链接中的代码:
function serverReachable() {
var s = $.ajax({
type: "HEAD",
url: window.location.href.split("?")[0] + "?" + Math.random(),
async: false
}).status;
return s >= 200 && s < 300 || s === 304;
};
我发现这种技术非常有效。因为请求仅针对标头信息,所以速度相当快,并且适用于所有浏览器。巨大的成功!:)
我希望其他人发现这和我一样有帮助。:)