小编给大家分享一下多个上传文件如何使用js验证文件格式和大小,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!
html部分:
<dsp:form action="${originatingRequest.requestURI}" method="post" enctype="multipart/form-data"> <dsp:input type="file" bean="ReturngoodsFormHandler.uploadedFile1" id="uploadedFile1" value="" onchange="checkfile('uploadedFile1');"/> <dsp:input type="file" bean="ReturngoodsFormHandler.uploadedFile2" id="uploadedFile2" value="" onchange="checkfile('uploadedFile2');"/> <a class="btn_sprite btn_font14_red" href="javascript:;" rel="external nofollow" ><span>提交申请</span></a> <dsp:input type="submit" bean="ReturngoodsFormHandler.submitReturngoods" id="submitReturngoods" value="Add"/> </dsp:form>
需要注意:上传文件要有一个id,然后onchage事件里加一个id的名称;
js部分:
//将验证的设置和错误信息抽离出来,有利于最后submit时候做判断 var flag=true; var errorinfo=""; //验证文件的格式 function checkfile(filenames){ filename=document.getElementByIdx_x_x(filenames).value; var re=/(.[.]bmp)$|(.[.]gif)$|(.[.]jpg)$|(.[.]png)$|(.[.]jpeg)$/i; if (!re.test(filename)) { errorinfo = "只支持bmp,gif,jpg,png,jpeg格式文件,请重新上传"; alert(errorinfo); flag = false; return false; } //验证文件的大小 if(document.getElementByIdx_x_x(filenames).size>8000){ errorinfo = "文件必须小于800KB,图片太大 size:"+document.getElementByIdx_x_x_x_x_x(filenames).size; alert(errorinfo); return false; } } jQuery('.btn_font14_red').click(function(){ if(flag==true){ $("#submitReturngoods").click(); }else{ alert(errorinfo); return false; } });
注意:这么做的好处是:第一:上传文件的时候,如果有错误,第一时间通知用户,用户去修改;
第二:如果用户最后填完了,虽然之前有提示语句,但是用户忘了是什么,点击提交的时候,仍然可以提示用户问题的原因。同时将错误信息和设置值放在最外面,而不用再次验证,可以节省页面效率。
以上是“多个上传文件如何使用js验证文件格式和大小”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注亿速云行业资讯频道!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。