ace_file_input

$('#id-input-file').ace_file_input({
no_file:'没有选择文件',
btn_choose:'选择',
btn_change:'更改',
icon_remove:null,
droppable:false,
thumbnail:false,//| true | large
// whitelist:'gif|png|jpg|jpeg', //黑白名单并没有起作用
allowExt: ['xls','xlsx'], //该属性只是对文件后缀的控制
before_change: function(files, dropped){
//选择文件 展示之前的事件
//return true 保留当前文件; return false 不保留文件;return -1 重置文件框
//需要同步等待返回结果
uploadjs.upload('addForm',setFileUrl,'id-input-file',"");
return true;
}
}).on('file.error.ace', function(event, info) {
nsDialog.jAlert("请上传excel格式文件","提示");
});
原文地址:https://www.cnblogs.com/niuniuniu/p/7650781.html