//判断图片是否存在
IsExistImg(url){
var xmlHttp ;
if (window.ActiveXObject)
{
alert('请用google 或者 火狐');
// xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
}
else if (window.XMLHttpRequest)
{
xmlHttp = new XMLHttpRequest();
}
xmlHttp.open("Get",url,false);
xmlHttp.send();
if(xmlHttp.status==404)
return false;
else
return true;
}
网友评论