我想使用通配符名称限制Fine Uploader打开对话框的文件列表区域中列出的文件数量(请参阅图像)。有一个简单的方法吗?谢谢!
Here is the picture of the Open dialog that contains a wild card name
答案 0 :(得分:0)
使用the validation.acceptFiles
option。例如,以下内容将限制对视频文件的选择:
new qq.FineUploaderBasic({
validation: {
acceptFiles: 'video/*'
}
})
此功能只是file input element's "accept" attribute周围的一个轻量级包装,它有不稳定的浏览器支持。