Huploadify icon indicating copy to clipboard operation
Huploadify copied to clipboard

fileTypeExts 无法限制打开后上传文件格式。

Open jarunwang opened this issue 7 years ago • 0 comments

/将输入的文件类型字符串转化为数组,原格式为*.jpg;*.png getFileTypes : function(str){ var result = []; var arr1 = str.split(";"); for(var i=0, len=arr1.length; i<len; i++){ result.push(arr1[i]); } return result; },

jarunwang avatar Oct 10 '17 09:10 jarunwang