我正在使用Jqgrid和Ajaxfileupload来上传文件。它工作正常,但当我要上传表单中的另一个文件时,我上传的文件。我想清除文件字段
这是我的代码
afterSubmit : function(response, postdata){
var respuesta = response.responseText;
var param = $("#resTables").jqGrid('getCell',lastSel,'idProyecto');
$.ajaxFileUpload({
url: "doajaxfileupload.php?imagen=&tabla=proyectos&categoria="+ param,
secureuri:false,
fileElementId:'fileToUpload',
dataType: 'json'
});