使用 jquery.filer 插件时,是否可以在AJAX回调方法中使用reset()API方法?
例如:
var fileUpload = $('#file-upload-input').filer({
uploadFile: {
url: 'note-media-upload',
type: 'POST',
enctype: 'multipart/form-data',
onComplete: function(l, p, o, s, jqXHR, textStatus) {
console.log('onComplete');
fileUpload.reset();
}
}
});
我收到错误:Uncaught TypeError: fileUpload.reset is not a function
答案 0 :(得分:1)
尝试使用 -
$('#file-upload-input').prop('jFiler').reset();