如何在没有提交后设置具有多个属性的输入类型文件的文件限制。当您选择文件时,它只允许10个文件。如果有这样的方法吗?
答案 0 :(得分:0)
试试这个
<input type="file" class="files" multiple/>
$('.files').change(function(){
if(this.files.length>10)
alert('to many files')
});
<强> DEMO HERE 强>
让我知道这就是你所要求的
答案 1 :(得分:0)
document.getElementById('my-form').onsubmit = function() {
var fileInput = document.getElementById('my-files');
if(fileInput.files.length > 10)
return false;
};