How to clear File Input

前端 未结 11 1061
臣服心动
臣服心动 2020-12-13 05:10

Below is part of the jquery code I have which displays the file input and a \"Clear File\" button.

var $imagefile = $(\'\').attr({
    type: \         


        
11条回答
  •  北海茫月
    2020-12-13 06:05

    In my case other solutions did not work than this way:

    $('.bootstrap-filestyle :input').val('');
    

    However, if you will have more than 1 file input on page, it will reset the text on all of them.

提交回复
热议问题