function check()
{
if (window.XMLHttpRequest){
// code for IE7+, Firefox, Chrome, Opera, Safari
var request = new XMLHttpRequest();
}
else{
// code for IE6, IE5
var request = new ActiveXObject("Microsoft.XMLHTTP");
}
dname="http://www.w3schools.com/js/default/gfdghkjfdh.html";
request.open("HEAD", dname,true);
request.send();
if(request.status !== 404){
window.location.href=dname;
}
else{
window.location.href="http://www.google.com";
}
}
上面的代码只检查服务器是否连接,它不检查 URL 的最后部分“gfdghkjfdh.html”是否可用。
有任何方法可以检查 URL“ http://www.w3schools.com/js/default/gfdghkjfdh.html ”正确使用 javascript 或任何客户端技术。请任何人帮助我