我附上了一张图片。当我尝试点击" X"图像下方的图标我可以删除文件,但文件名在"右侧;选择文件"仍然显示。谁能告诉我如何重置它。
我正在使用以下代码删除图片。
$('div').on('click', '.closeDiv', function(e){
var closest = $(this).closest('td');
var id = closest.find('div:first');
$(this).prev().remove();
$(this).remove();
closest.find('span:first').html('');
$('#'+id).val("");
})
答案 0 :(得分:1)
试试这个:
$('#file_id').val('');
// It will remove the selected file. Use it inside your function.