Méthode 1 : (applicable uniquement à IE)
Copiez le code comme suit :
fonction CheckStatus (url)
{
XMLHTTP = nouvel ActiveXObject("Microsoft.XMLHTTP")
XMLHTTP.open("HEAD",url,false)
XMLHTTP.envoyer()
retourner XMLHTTP.status==200
}
fonction NetPing()
{
return CheckStatus("//www.VeVB.COm");
}
Méthode 2 : (Utilisation de jquery, applicable à tous les navigateurs)
Copiez le code comme suit :
fonction NetPing() {
$.ajax({
tapez : "OBTENIR",
cache : faux,
url : "//www.VeVB.COm",
données: "",
succès : fonction() {
Terminé(1);
},
erreur : fonction() {
Terminé (0);
}
});
}