js 验证图片
Posted DangerousBaymax
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js 验证图片相关的知识,希望对你有一定的参考价值。
var selectedImg = e.target.files[0]; //获取图片 var isPic = /^(image/bmp|image/gif|image/jpeg|image/png|image/tiff)$/i; //验证正则 if(selectedImg) { if(!isPic.test(selectedImg.type)) { alert(‘文件格式必须为图片‘); return; } if(selectedImg.size > 2097152) { alert("图片大小不能超过2M"); return; } this.images = URL.createObjectURL(selectedImg); //化为可浏览地址 }
以上是关于js 验证图片的主要内容,如果未能解决你的问题,请参考以下文章