Не удается очистить ввод файла
Я использую Jasny Plugin
и я пытаюсь очистить файл, загруженный через вход:
<div class="form-group">
<div class="fileinput fileinput-new text-center" data-provides="fileinput">
<div class="fileinput-new thumbnail" data-hasqtip="1" title="" aria-describedby="qtip-1">
<img class="image-preview" src="../assets/img/image_placeholder.jpg" alt="...">
</div>
<div class="fileinput-preview fileinput-exists thumbnail" style=""></div>
<div>
<span class="btn btn-round btn-rose btn-file">
<span class="fileinput-new">Add Photo</span>
<span class="fileinput-exists">Change</span>
<input type="hidden"><input type="file" name="..." id="product-image" accept="image/*">
</span>
<br>
<a href="#" class="btn btn-danger btn-round fileinput-exists" data-dismiss="fileinput">
<i class="fa fa-times"></i>
Remove </a>
</div>
</div>
</div>
После загрузки изображения предварительный просмотр появится в окне плагина, поэтому я выполняю этот код, нажимая кнопку:
$('#product-image').fileinput("clear");
но я получаю эту ошибку:
Cannot read property 'val' of undefined
at c.clear (jasny-bootstrap.min.js:6)
at HTMLInputElement.<anonymous> (jasny-bootstrap.min.js:6)
at Function.each (jquery.min.js:2)
at r.fn.init.each (jquery.min.js:2)
at r.fn.init.a.fn.fileinput (jasny-bootstrap.min.js:6)
at HTMLButtonElement.dispatch (jquery.min.js:3)
at HTMLButtonElement.q.handle (jquery.min.js:3)
1 ответ
Решение
Попробуйте использовать вместо:
$(".fileinput").fileinput("clear");
Поскольку вы не должны выбирать вход внутри плагина, чтобы очистить его, а скорее весь fileinput
классы.