function
isOnline(){
var
img =
new
Image();
img.id =
"test_is_online"
;
img.onload =
function
(){
document.body.removeChild(
document.getElementById(
"test_is_online"
));
};
img.onerror =
function
(){
document.body.removeChild(
document.getElementById(
"test_is_online"
));
alert(
"断网了!"
);
};
img.src =
"http://www.baidu.com/img/baidu_jgylogo3.gif"
;
};
window.onload =
function
(){
setInterval(isOnline, 10000);
};