请问大神,要改变‘选择’按钮里的‘选择’两个字为‘导入’要怎么给呢
有一个需求想要动态更改文件上次的后缀限制,初始化时可上传任意后缀文件,第二次上次时必须与第一次上次的文件后缀一致,fileinput怎样能动态更改设置?需要使用reset方法吗?要怎么使用?
回复这个插件没有回调函数么
上传成功后回调
$('#input-idh').on('fileuploaded', function(event, data, previewId, index) { console.log(data); console.log('File uploaded triggered'); });
移除成功后回调
$('#input-id').on('filesuccessremove', function(event, id) { if (some_processing_function(id)) { console.log('Uploaded thumbnail successfully removed'); } else { return false; // abort the thumbnail removal } });
上传文件大小怎么改?