我正在使用 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'
});