码迷,mamicode.com
首页 > Web开发 > 详细

JS检测图片路径是否存在

时间:2021-06-10 18:12:51      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:图片   image   efi   ons   存在   define   else   ||   file   

checkImgExists(imgurl) {
var ImgObj = new Image(); //判断图片是否存在
ImgObj.src = imgurl;
console.log(ImgObj.fileSize);//打印出来是undefined
//没有图片,则返回-1
if (ImgObj.fileSize > 0 || (ImgObj.width > 0 && ImgObj.height > 0)) {
return true;
} else {
return false;
}
},

JS检测图片路径是否存在

标签:图片   image   efi   ons   存在   define   else   ||   file   

原文地址:https://www.cnblogs.com/jyc226/p/14869693.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!