限制多个文件上传欧芹验证的最大项目
limit maximum item on multiple file upload parsley validation
我想让它验证。如果用户选择超过 5 个文件,它应该显示警告
<input max-file-input="5" id="fileinput" type="file" multiple="multiple" name="files[]" accept="image/*" data-classbutton="btn btn-default" data-classinput="form-control inline" class="filestyle form-control">
没有内置验证器可以执行此操作,但您应该能够轻松编写自己的验证器。
指针:
- HTML5: How to count the length of the files from the multiple-input field
- https://github.com/guillaumepotier/Parsley.js/issues/989
的最后两条评论
我想让它验证。如果用户选择超过 5 个文件,它应该显示警告
<input max-file-input="5" id="fileinput" type="file" multiple="multiple" name="files[]" accept="image/*" data-classbutton="btn btn-default" data-classinput="form-control inline" class="filestyle form-control">
没有内置验证器可以执行此操作,但您应该能够轻松编写自己的验证器。
指针:
- HTML5: How to count the length of the files from the multiple-input field
- https://github.com/guillaumepotier/Parsley.js/issues/989 的最后两条评论