博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
js 验证图片
阅读量:5122 次
发布时间:2019-06-13

本文共 446 字,大约阅读时间需要 1 分钟。

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); //化为可浏览地址				}

  

转载于:https://www.cnblogs.com/DangerousBaymax/p/9202210.html

你可能感兴趣的文章
使用Xshell密钥认证机制远程登录Linux
查看>>
OpenCV之响应鼠标(三):响应鼠标信息
查看>>
Android 画图之 Matrix(一)
查看>>
List<T>列表通用过滤模块设计
查看>>
【模板】最小生成树
查看>>
设计模式之结构型模式
查看>>
poj2569
查看>>
使用pygal_maps_world.i18n中数据画各大洲地图
查看>>
sql server必知多种日期函数时间格式转换
查看>>
jQuery EasyUI 的下拉选择combobox后台动态赋值
查看>>
timeline时间轴进度“群英荟萃”
查看>>
python if else elif statement
查看>>
网络编程
查看>>
文本隐藏(图片代替文字)
查看>>
java面试题
查看>>
提高码力专题(未完待续)
查看>>
pair的例子
查看>>
前端框架性能对比
查看>>
@property中 retain 详解
查看>>
uva 387 A Puzzling Problem (回溯)
查看>>