function checkImgExist(imgurl) {
var ImgObj = new Image();
ImgObj.src = imgurl;
ImgObj.onload=function(){
console.log(ImgObj); // 图片正常
}
ImgObj.onerror=function(){
console.log('error'); // 图片不存在
}
}
function checkImgExist(imgurl) {
var ImgObj = new Image();
ImgObj.src = imgurl;
ImgObj.onload=function(){
console.log(ImgObj); // 图片正常
}
ImgObj.onerror=function(){
console.log('error'); // 图片不存在
}
}
本文标题:判断图片的地址是否404
本文链接:https://www.haomeiwen.com/subject/dbitnctx.html
网友评论