欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

JS判断URL资源不可用

程序员文章站 2022-04-24 16:45:59
...
<script language="javascript">
function getURL(url) {
var xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
xmlhttp.open("GET", url, false);
xmlhttp.send();
if (xmlhttp.readyState == 4) {
if (xmlhttp.Status != 200)
alert("不存在");
return xmlhttp.Status == 200;
}
return false;
}
</script>
<a href="http://www.baitw.com:7080/images/zhenka_r1_c20.jpg"
onclick="return getURL(this.href)">csdn</a>