美文网首页
js 判断图片是否需存在

js 判断图片是否需存在

作者: _嘿嘿_ | 来源:发表于2018-09-26 17:53 被阅读0次

    //判断图片是否存在
    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;
    }

    相关文章

      网友评论

          本文标题:js 判断图片是否需存在

          本文链接:https://www.haomeiwen.com/subject/xzjjoftx.html