input file多个文件上传基本教程

Posted jlfw

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了input file多个文件上传基本教程相关的知识,希望对你有一定的参考价值。

现在有市面很多上传的插件,功能都很完善。但是也有其缺点:就是影响网站页面的性能,下面介绍的是使用input的file类型进行文件的上传。这种上传方法适合做简单上传功能的效果。

不废话甩代码

html

   <form action="/example/html5/demo_form.asp" method="get" onsubmit="return fileCountCheck(this);">
        选择图片:<input type="file" id="input" name="input" multiple="multiple" />
        <input type="submit">
    </form>

javascript:
限制图片上传个数3张

        function fileCountCheck(objForm) {
            if(window.File && window.FileList) {
                var fileCount = document.getElementById("input").files.length;
                if(fileCount > 3) {
                    window.alert(‘文件数不能超过3个,你选择了‘ + fileCount + ‘个‘);
                    return false;
                }

            } else {
                window.alert(‘抱歉,你的浏览器不支持FileAPI,请升级浏览器!‘);
            }

        }
    

以上是关于input file多个文件上传基本教程的主要内容,如果未能解决你的问题,请参考以下文章

jquery 多个 上传文件教程

input:file上传文件类型(超详细)

input:file上传文件类型(记录)

input file 上传文件类型大小检查

input 框上传多个文件

HTML5基础 input file multiple 上传多个文件