jQuery文件上传限制文件数量

jQuery文件上传限制文件数量

本文介绍了jQuery文件上传限制文件数量的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用jquery文件上载将文件上载到服务器.我想限制用户最多上传6个文件.我搜索了Wiki jquery文件上载,但没有找到它的参数.有什么办法可以限制用户的赞扬次数

I am using jquery file upload to upload the files to the server . I want to restrict the user to upload maximum 6 files . I search the wiki jquery file upload but didnt find the parameter for it . Is there any way that i can restrict the user on number of uplaods

推荐答案

使用maxNumberOfFiles,这是文档:

$('#fileuploadbasic').fileupload({

maxNumberOfFiles: 6

});

这篇关于jQuery文件上传限制文件数量的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-15 09:22