“Wybierz plik Bootstrap Pokaż nazwę pliku” Kod odpowiedzi

Plik wejściowy bootstrap

<div class="custom-file">
 <input type="file"  class="custom-file-input" id="inputGroupFile01">
<label class="custom-file-label" for="inputGroupFile01">Choose file</label>
</div>
Colorful Civet

Wejście typu pliku bootstrap


<div class="mb-3">
  <label for="formFileSm" class="form-label">Small file input example</label>
  <input class="form-control form-control-sm" id="formFileSm" type="file">
</div>
Obedient Octopus

Wybierz plik Bootstrap Pokaż nazwę pliku

document.querySelector('.custom-file-input').addEventListener('change',function(e){
  var fileName = document.getElementById("myInput").files[0].name;
  var nextSibling = e.target.nextElementSibling
  nextSibling.innerText = fileName
})
Long Leopard

Odpowiedzi podobne do “Wybierz plik Bootstrap Pokaż nazwę pliku”

Pytania podobne do “Wybierz plik Bootstrap Pokaż nazwę pliku”

Więcej pokrewnych odpowiedzi na “Wybierz plik Bootstrap Pokaż nazwę pliku” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu