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

js 验证图片

时间:2018-06-20 10:18:02      阅读:218      评论:0      收藏:0      [点我收藏+]

标签:type   image   get   sele   验证   图片   文件格式   bmp   格式   

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 验证图片

标签:type   image   get   sele   验证   图片   文件格式   bmp   格式   

原文地址:https://www.cnblogs.com/DangerousBaymax/p/9202210.html

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