所属分类:输入-上传
1.插件依赖jQuery,打开index.html即可使用
2.初始化id,提供回调函数,与后台交互
3.初始化
var dragImgUpload = new DragImgUpload("#_area",{ callback:function (files) { //回调函数,可以传递给后台等等 var file = files[0]; console.log(file.name); } })
自己加个判断就行了uload.js第93行后加
if (!/\.(gif|jpg|jpeg|png|GIF|JPG|PNG)$/.test(filename)) { alert("图片类型必须是.gif,jpeg,jpg,png中的一种"); ths.value = ""; return false; }