如何重置文件按钮

时间:2016-10-06 09:54:10

标签: jquery

enter image description here

我附上了一张图片。当我尝试点击" 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("");
        })

1 个答案:

答案 0 :(得分:1)

试试这个:

$('#file_id').val('');
// It will remove the selected file. Use it inside your function.